CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/08 06:40:26 Modified files: libexec/tradcpp: files.c main.c output.c Log message: Add support for using - as shorthand for stdin/stdout in tradcpp. When looking into switching the /usr/bin/cpp wrapper to tradcpp I came across "| ${CPP} ${CPPFLAGS} -" in usr.bin/which. gcc documents this behaviour for cpp here: https://gcc.gnu.org/onlinedocs/cpp/Invocation.html Versions of the John F. Reiser derived cpp in 32V and CSRG SCCS accept this usage as well, as does the cpp in PCC. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/08 08:16:43 Modified files: sys/dev/usb : umass_scsi.c Log message: Fix debug printfs. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/08 08:17:53 Modified files: sys/dev/usb : xhci.c Log message: Even if the endpoint it reseted before the stack gets informed that a transfer stalled, report that a stall happen because umass(4) relies on this behavior... CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/08 08:20:05 Modified files: sys/dev/usb : usb.h usbdi_util.c usbdi_util.h Log message: Super Speed hub descriptor definition and routine, required for upcoming external USB 3.0 hub support. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/08 08:22:45 Modified files: sys/dev/usb : xhci.c Log message: Implement polling. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/08 08:28:02 Modified files: sys/dev/usb : xhci.c xhcireg.h Log message: Improve the logic to determine the maximum endpoint service interface time payload. Super speed companion descriptor are still not used but at least we can properly initialize super speed interrupt pipes. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/08 08:34:12 Modified files: sys/dev/usb : xhci.c Log message: Make sure asynchronous commands do not race with synchronous ones. Since asynchronous commands can be submitted from interrupt context it was possible to race with a process waiting for the completion of a previously submitted command. So stop relying on the per-softc TRB pointer for asynchronous commands and simply get the address of the command TRB from the event TRB. CVSROOT: /cvs Module name: www Changes by: bcallah@cvs.openbsd.org 2014/08/08 08:41:16 Modified files: . : events.html Log message: Move my August 2014 nycbug talk to past events. No recording this time, sorry. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 08:52:53 Modified files: share/man/man8 : autoinstall.8 Log message: * consistently use semantic mdoc(7) macros * add HISTORY and AUTHORS * some mdoc(7) style fixes * some wording fixes and avoid stray future tense feedback and ok rpe@ jmc@, ok jasper@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:03:25 Modified files: usr.bin/mandoc : mdoc.h mdoc_term.c mdoc_validate.c Log message: Partial implementation of .Bd -centered. In groff, .Bd -centered operates in fill mode, which is relatively hard to implement, while this implementation operates in non-fill mode so far. As long as you pay attention that your lines do not overflow, it works. To make sure that rendering is the same for mandoc and groff, it is recommended to insert .br between lines for now. This implementation will need improvement later. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:10:15 Modified files: usr.bin/mandoc : mandoc.h mdoc_html.c mdoc_man.c mdoc_term.c mdoc_validate.c read.c Log message: Various improvements related to .Ex and .Rv: * let .Nm fall back to the empty string, not to UNKNOWN * never let .Rv copy an argument from .Nm * avoid spurious \fR after empty .Nm in -Tman * correct handling of .Ex and .Rv in -Tman * correct the wording of the output for .Rv without arguments * use non-breaking spaces in .Ex and .Rv output where required * split MANDOCERR_NONAME into a warning for .Ex and an error for .Nm CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:15:27 Modified files: usr.bin/mandoc : mandoc.h mdoc_validate.c read.c roff.c Log message: better name and wording for the last two non-generic errors CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/08/08 09:16:39 Modified files: sys/net80211 : ieee80211.c ieee80211_node.c ieee80211_regdomain.c Log message: use nitems() instead of various local constructs ok stsp@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:21:17 Modified files: usr.bin/mandoc : mandoc.h mdoc_validate.c read.c Log message: Remove two useless FATAL errors. When a file contains neither text nor macros, treat it as an empty document. When the mdoc(7) document prologue is incomplete, use some default values. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:26:28 Modified files: usr.bin/mandoc : mandoc.h mdoc_macro.c mdoc_term.c mdoc_validate.c read.c Log message: Get rid of the useless FATAL error "child violates parent syntax". When finding items outside lists, simply skip them and throw an ERROR. Handle subsections before the first section instead of bailing out. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:32:17 Modified files: usr.bin/mandoc : libman.h libmdoc.h man.c man_macro.c mdoc.c Log message: Simplify: replace one global flag by one local variable and remove three unused global flags. No functional change. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:35:31 Modified files: usr.bin/mandoc : man_macro.c man_validate.c Log message: Improve handling of next-line scope broken by end of file. Detect the condition earlier, report in the error message which block is broken, and delete the broken block. Consequently, empty section headers can no longer happen. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:38:46 Modified files: usr.bin/mandoc : mandoc.h mdoc_validate.c read.c Log message: Remove the useless FATAL error "argument count wrong, violates syntax". The last remaining instance was .It in .Bl -column with more than one excessive .Ta. However, simply downgrading from FATAL to ERROR, it just works fine, almost the same way as in groff, without any other changes. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:42:39 Modified files: usr.bin/mandoc : mandoc.h mdoc_validate.c read.c Log message: In .Bl -column, if some of the column width declarations are given right after the -column argument and some at the very end of the argument list, after some other arguments like -compact, concatenate the column lists. This gets rid of one of the last useless FATAL errors and actually shortens the code by a few lines. This fixes an issue introduced more than five years ago, at first causing an assert() since bsd.lv mdoc_action.c rev. 1.14 (June 17, 2009), then later a FATAL error since mdoc_validate rev. 1.130 (Nov. 30, 2010), and marked as "TODO" ever since. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:45:58 Modified files: usr.bin/mandoc : mandoc.h mdoc_validate.c read.c Log message: Split MANDOCERR_IGNARGV into one message for .An and one for .Bl and report the macro name and argument. CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/08 09:46:01 Modified files: usr.sbin/httpd : server_http.c Log message: Allow to serve emtpy (0 bytes) files. Found by jasper@ OK florian@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:48:43 Modified files: usr.bin/mandoc : mandoc.h read.c roff.c Log message: Dynamically allocate the stack of roff(7) .ie condition values and thus get rid of the last useless fatal error. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:54:10 Modified files: usr.bin/mandoc : man.c man_validate.c mandoc.h mdoc.c mdoc_macro.c mdoc_validate.c read.c roff.c Log message: mention requests and macros in more messages CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 09:57:05 Modified files: usr.bin/mandoc : libman.h libmdoc.h man_validate.c mdoc_validate.c Log message: demacrify: get rid of man_nmsg(), man_pmsg(), mdoc_nmsg(), mdoc_pmsg() CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 10:00:23 Modified files: usr.bin/mandoc : man_html.c mdoc_html.c out.c term.c term_ascii.c term_ps.c Log message: Clarity with respect to floating point handling: Write double constants as double rather than integer literals. Remove useless explicit (double) cast done at one place and nowhere else. No functional change. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/08 10:02:03 Modified files: sys/dev/pci : pcidevs Log message: add bochs and microsoft emulated vga CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 10:02:55 Modified files: usr.bin/mandoc : term.c Log message: Fix floating point handling: When converting double to size_t, properly round to the nearest M (=0.001m), which is the smallest available unit. This avoids weirdness like (size_t)(0.6 * 10.0) == 5 by instead calculating (size_t)(0.6 * 10.0 + 0.0005) == 6, and so it fixes the indentation of the readline(3) manual. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/08 10:03:08 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 10:05:42 Modified files: usr.bin/mandoc : libman.h man.c man_validate.c Log message: Simplify man(7) validation: Drop pre-handlers, they were almost unused. Drop the needless complexity of allowing more than one post-handler. This saves one internal interface function, one static function, one private struct definition, sixteen static arrays, and 45 lines of code. No functional change. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 10:08:19 Modified files: usr.bin/mandoc : mdoc_validate.c Log message: Simplify by allowing only one pre-handler. Saves 12 static arrays and 19 lines of code. No functional change. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 10:11:10 Modified files: usr.bin/mandoc : mdoc_validate.c Log message: Simplify by allowing only one post-handler. Saves 36 static arrays and 10 lines of code at the expense of only five new trivial static functions. No functional change. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 10:17:09 Modified files: usr.bin/mandoc : man_validate.c mandoc.h mandocdb.c mdoc.c mdoc_html.c mdoc_man.c mdoc_term.c mdoc_validate.c read.c Log message: Bring the handling of defective prologues even closer to groff, in particular relaxing the distinction between prologue and body and further improving messages. * The last .Dd wins and the last .Os wins, even in the body. * The last .Dt before the first body macro wins. * Missing title in .Dt defaults to UNTITLED. Warn about it. * Missing section in .Dt does not default to 1. But warn about it. * Do not warn multiple times about the same mdoc(7) prologue macro. * Warn about missing .Os. * Incomplete .TH defaults to empty strings. Warn about it. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 10:25:15 Modified files: usr.bin/mandoc : mandoc.1 Log message: Remove redundant verbiage in the style of "a file is a file, a line is a line, a column is a column"; suggested by jmc@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 10:32:17 Modified files: share/man/man7 : mdoc.7 Log message: some corrections and improvements with respect to prologue macros; found while working on mandoc(1) messages CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/08 10:33:27 Modified files: sys/dev/pci/drm/radeon: atombios_crtc.c Log message: drm/radeon: only apply hdmi bpc pll flags when encoder mode is hdmi From Alex Deucher 85cdd5e933c0f9fe3262067e707eed565db46378 in ubuntu 3.8 7d5ab3009a8ca777174f6f469277b3922d56fd4b in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/08 10:35:56 Modified files: sys/dev/pci/drm/radeon: atombios_encoders.c Log message: drm/radeon/atom: fix dithering on certain panels From Alex Deucher 9102ef0d290f01247918f5a519d8fa4a96eaf370 in ubuntu 3.8 642528355c694f5ed68f6bff9ff520326a249f99 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/08 10:38:23 Modified files: sys/dev/pci/drm/radeon: atombios_dp.c Log message: drm/radeon/dp: fix lane/clock setup for dp 1.2 capable devices From Alex Deucher c9a1adc31f78a30f33c591b61171f02d13a5b1a7 in ubuntu 3.8 3b6d9fd23e015b5397c438fd3cd74147d2c805b6 in mainline linux CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/08 10:38:25 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Tweak verbiage. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/08 10:41:16 Modified files: sys/dev/pci/drm/radeon: radeon_connectors.c Log message: drm/radeon: fix typo in radeon_connector_is_dp12_capable() From Alex Deucher 94dfc49785ea1acc1dd2c086ffd8d61ea3a5ee8f in ubuntu 3.8 af5d36539dfe043f1cf0f8b7334d6bb12cd14e75 in mainline linux CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/08 11:04:55 Modified files: usr.sbin/sysmerge: sysmerge.8 Log message: Drop some useless verbiage. sysctl.conf is an example now. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 11:17:42 Modified files: usr.bin/mandoc : cgi.c Log message: mansearch.h uses uint64_t, so it needs stdint.h; found on Linux CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/08 11:36:21 Modified files: usr.bin/mandoc : mandocdb.c mansearch.c Log message: Absurdly, the return value of sqlite3_column_text() is "const unsigned char *", which causes warnings with GCC on Linux. Explicitly cast to "const char *" to avoid this. Issue noticed by kristaps@. CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/08 12:26:50 Modified files: usr.sbin/relayd: relay_udp.c Log message: No events were added for DNS UDP so it stopped working after the first request. Additionally, the DNS code tried to use an invalid timeout. Fix from mm@freebsd.org Reported by Johan Schuijt CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/08 12:29:42 Modified files: usr.sbin/httpd : http.h httpd.h server_fcgi.c server_file.c server_http.c Log message: When opening directories, re-match the location after the index file has been appended. This allows to use a fastcgi target as the default index, for example index.php. OK florian@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/08 14:49:38 Modified files: share/man/man9 : bufq_init.9 Log message: zap trailing whitespace; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/08 14:50:28 Modified files: libexec/tradcpp: tradcpp.1 Log message: some basic fixes; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/08 14:51:43 Modified files: usr.bin/units : units.lib Log message: update currency exchange rates; CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/08 21:29:35 Modified files: lib/librthread : rthread_attr.c rthread_np.c Log message: Only need and not here CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/08 22:35:17 Modified files: gnu/usr.bin/binutils-2.17/binutils: readelf.c gnu/usr.bin/binutils/binutils: readelf.c Log message: Match format width of symbol visibility to the column header This corrects the alignment of the columns of hidden symbols CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/08 22:49:47 Modified files: gnu/usr.bin/binutils-2.17/ld/scripttempl: elf.sc gnu/usr.bin/binutils/ld/scripttempl: elf.sc Log message: We don't use the __openbsd_randomdata_{start,end} symbols, but rather get that info via the PT_OPENBSD_RANDOM segment info, so kill the symbols While here, delete the commented out lines for __DYNAMIC as the question they ask is answered 'no' ok matthew@ back in May CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/08 22:59:02 Modified files: gnu/usr.bin/binutils/gas/config: tc-i386.c Log message: Backport from binutils-2.17 the correct i386/amd64 register->int assignments for CFI. This changes the unwind information generated on amd64. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/08 23:52:43 Modified files: gnu/usr.bin/binutils/bfd: elflink.c Log message: Backport from 2.17: mark the _GLOBAL_OFFSET_TABLE_, _DYNAMIC, and _PROCEDURE_LINKAGE_TABLE_ symbols as (at least) hidden. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/08/09 01:33:37 Modified files: usr.bin/tmux : format.c input.c server-client.c tmux.h tty.c Log message: Remove support for the continuous reporting "any" mouse mode which never really worked properly and is rarely used. CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/09 01:35:45 Modified files: usr.sbin/httpd : parse.y Log message: Allow to inclue the types section anywhere in the configuration file. Found by chris@ OK doug@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/09 02:11:09 Modified files: net/cvsync : Makefile Log message: specify install command without a path, so that we can override it CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/09 02:49:48 Modified files: usr.sbin/httpd : httpd.8 Log message: basic cleanup; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/09 02:54:03 Modified files: usr.sbin/httpd : httpd.conf.5 Log message: sort "prefork", and remove a useless macro; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/09 03:07:14 Modified files: usr.sbin/httpd : httpd.conf.5 Log message: some minor tweaks; CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/09 03:45:14 Modified files: sys/dev/usb : uhub.c usb.c usb_subr.c usbdivar.h Log message: Do not store the whole USB hub descriptor in the "struct usbd_hub" to help integrating super speed hubs that use a different descriptor. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/09 03:48:32 Modified files: sys/dev/usb : uhub.c Log message: Handle super speed hub descriptors. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/09 03:58:11 Modified files: sys/dev/usb : uhub.c Log message: Correctly recognize Super Speed devices, this is part of the work to be able to use USB 3.0 devices behind an external hub. This is a bit tricky because the SS status use a different power bit that maps to the Low speed one. So no longer accept devices without power bit and fallback to the parent hub's speed in case the status does not report any particular speed. Note that xhci(4) root hubs still set the traditionnal UPS_PORT_POWER bit with the correct device speed. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/09 04:32:36 Modified files: sys/dev/usb : xhci.c Log message: Add support for non-root hubs now that uhub(4) can deal with them. For the moment only Super and High Speed devices are properly recognized. Some TT love is required for Full and Low speed devices. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/09 06:34:05 Modified files: usr.sbin/sysmerge: sysmerge.sh sysmerge.8 Log message: sysctl.conf is an example. Tweak error output. Mention that `-S' has no effect when sets aren't used. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/09 06:45:03 Modified files: usr.sbin/sysmerge: sysmerge.8 sysmerge.sh Log message: Initial support for handling configuration files from packages (aka @sample) -- `sysmerge -p` Worked done at g2k14. Committing early so we have plenty of time for testing. with help from espie@ thanks to landry@ for feedback on initial testing CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/09 06:46:51 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Extend comment. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/09 08:24:49 Modified files: usr.bin/mandoc : mansearch.c Log message: mmap(2) requires MAP_PRIVATE ^ MAP_SHARED for flags; found by kristaps@ on Mac OS X CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/09 10:39:25 Modified files: usr.sbin/sysmerge: sysmerge.8 Log message: less chatty; ok ajacoutot CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/09 10:54:58 Modified files: lib/libssl/src/crypto/asn1: Tag: OPENBSD_5_5 a_object.c lib/libssl/src/crypto/ec: Tag: OPENBSD_5_5 ec_lib.c ecp_smpl.c lib/libssl/src/ssl: Tag: OPENBSD_5_5 d1_both.c d1_clnt.c d1_srvr.c s23_lib.c s23_srvr.c s3_clnt.c s3_enc.c s3_pkt.c s3_srvr.c ssl_lib.c t1_lib.c Log message: backport relevant security fixes from openssl 1.0.1i tested by bcook jsg CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/09 10:55:55 Modified files: lib/libssl/src/crypto/asn1: Tag: OPENBSD_5_4 a_object.c lib/libssl/src/crypto/ec: Tag: OPENBSD_5_4 ec_lib.c ecp_smpl.c lib/libssl/src/ssl: Tag: OPENBSD_5_4 d1_both.c d1_clnt.c d1_srvr.c s23_lib.c s23_srvr.c s3_clnt.c s3_enc.c s3_pkt.c s3_srvr.c ssl_lib.c t1_lib.c Log message: backport relevant security fixes from openssl 1.0.1i tested by bcook jsg CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/09 10:59:15 Modified files: games/komi/patches: patch-Makefile Log message: makefile patch lost +x right on directory, bad when non-root CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/09 13:29:23 Modified files: infrastructure/templates: network.conf.template Log message: The FreeBSD ports-distfiles and local-distfiles infrastructures have changed. "go for it" naddy@ CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/09 13:31:22 Modified files: devel/bouml : Makefile devel/libinotify: Makefile Log message: Use ${_MASTER_SITE_FREEBSD} instead of hardcoding (outdated) locations. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/09 13:39:34 Modified files: devel/bouml : Makefile Log message: New homepage. From Stefan Wollny. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/08/09 13:44:40 Modified files: shells/bash : Makefile distinfo Log message: update to 4.3 patchlevel 22 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/08/09 13:46:19 Modified files: archivers/gtar : Makefile distinfo archivers/gtar/patches: patch-configure archivers/gtar/pkg: DESCR PLIST Log message: Update to 1.28. Noteworthy changes in this release: * New checkpoint action: totals * Extended checkpoint format specification. * New option --one-top-level * New option --sort * New exclusion options * Manpages CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 14:08:44 Modified files: gnu/usr.bin/binutils-2.17/binutils: dwarf.c gnu/usr.bin/binutils/binutils: readelf.c Log message: Fix readelf --debug-dump=frames-interp output: once a register is given a column, it needs to included in all rows, even after the register is restored. ok jsg@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/09 15:33:22 Modified files: books/JVMS : Makefile Log message: only chmod files, fixes rights on directories CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/09 15:34:12 Modified files: infrastructure/lib/DPB: Signature.pm Log message: fix .a printed names and such. CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/09 15:35:09 Modified files: textproc/html : Makefile Log message: unhardcode chown CVSROOT: /cvs Module name: src Changes by: halex@cvs.openbsd.org 2014/08/09 15:51:29 Modified files: distrib/miniroot: install.sh install.sub Log message: After a cleanup by deraadt I noticed the four-space-indent had started infesting the scripts. As we generally use a single tab for line continuation indent in the scripts, let's reclaim 30 precious bytes! ok rpe@ krw@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 16:32:08 Modified files: gnu/usr.bin/binutils/bfd: bfd-in.h Log message: bfd-in2.h is generated from this; merge back a change that was made there CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 16:34:35 Modified files: gnu/usr.bin/binutils-2.17/bfd: bfd.c gnu/usr.bin/binutils/bfd: bfd.c Log message: Store timestamps in time_t CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 16:37:29 Modified files: gnu/usr.bin/binutils-2.17/bfd: bfd-in.h Log message: bfd-in2.h is generated from this; merge back a change that was made there CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 16:39:08 Modified files: gnu/usr.bin/binutils-2.17/bfd: bfd-in2.h libbfd.h gnu/usr.bin/binutils/bfd: bfd-in2.h libbfd.h Log message: Regenerate to pick up time_t changes CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 16:40:16 Modified files: gnu/usr.bin/binutils-2.17/bfd: coff-alpha.c gnu/usr.bin/binutils/bfd: coff-alpha.c Log message: Parse times with strtoll() instead of strtol() CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 16:42:13 Modified files: gnu/usr.bin/binutils/gdb: objfiles.h Log message: Use time_t for storing times CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 16:44:15 Modified files: bin/systrace : systrace.c Log message: Switch from calloc() to reallocarray() where the zeroing isn't needed CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 18:20:55 Modified files: bin/systrace : systrace-errno.h systrace-error.c Log message: Add newer errnos CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 18:21:49 Modified files: bin/systrace : systrace-translate.c Log message: Add F_DUPFD_CLOEXEC handling CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 20:09:35 Modified files: sbin/ldattach : ldattach.c Log message: msts(4) appears to support TIOCSTSTAMP From Maurice Janssen (maurice (at) z74.net) CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 20:15:18 Modified files: lib/libc/gdtoa : ldtoa.c lib/libc/stdlib: hcreate.c Log message: Only need and not all of here CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 20:38:24 Modified files: sbin/fsdb : fsdb.h Log message: Delete extern declarations for variables that don't exist (anymore?) CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 20:41:41 Modified files: usr.bin/telnet : telnet.1 Log message: Add Xr to skey and stty CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 20:44:26 Modified files: bin/ksh : io.c tty.c Log message: Replace F_DUPFD followed by setting FD_CLOEXEC with just F_DUPFD_CLOEXEC ok matthew@ millert@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 20:49:24 Modified files: include : string.h Log message: Delete duplicate conditional diff from frantisek holop (minusf (at) obiit.org) CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/08/09 21:24:51 Modified files: sys/netinet : ip_divert.c sys/netinet6 : ip6_divert.c Log message: Rename p_hdrlen to min_hdrlen to better reflect its purpose. No object file change ok florian@ henning@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 21:25:39 Modified files: gnu/usr.bin/binutils/bfd: som.c archive.c Log message: Format time_t with %lld after casting to long long CVSROOT: /cvs Module name: src Changes by: lteo@cvs.openbsd.org 2014/08/09 21:26:20 Modified files: sys/netinet : ip_divert.c Log message: Fix the length check for reinjected ICMP packets: sizeof(struct icmp) is 28 but an ICMP packet can be as small as 8 bytes (e.g. an ICMP echo request packet with no payload), so check against ICMP_MINLEN instead. Prior to this fix, divert(4) would erroneously discard valid ICMP packets that are shorter than 20 bytes. ICMPv6 is not affected, so this change applies to ICMP over IPv4 only. ok florian@ henning@ CVSROOT: /cvs Module name: www Changes by: lteo@cvs.openbsd.org 2014/08/09 21:47:20 Modified files: . : donations.html Log message: Thanks to Jay Huldeen for donating sparc64 hardware. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 22:57:33 Modified files: bin/systrace : intercept-translate.c linux-translate.c systrace-translate.c Log message: Only need and not all of here CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 23:00:25 Modified files: sbin/swapctl : swaplist.c Log message: Only need and not all of here CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 23:06:38 Modified files: libexec/login_radius: raddauth.c Log message: Only need and not all of here CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 23:08:31 Modified files: regress/lib/libpthread/stack: stack.c Log message: Only need and not all of here CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/09 23:09:31 Modified files: regress/lib/libutil/bcrypt_pbkdf: bcrypt_pbkdf_test.c Log message: Only need and not all of here CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/10 01:19:08 Modified files: lib/libc/sys : socket.2 Log message: AF_IMPLINK and AF_BLUETOOTH are gone CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/10 01:23:59 Modified files: share/man/man4 : netintro.4 Log message: AF_BLUETOOTH is gone. AF_LOCAL isn't involved pipe (and portals are gone). CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 01:25:45 Modified files: misc/magicpoint: Makefile Log message: force install without path in xmindpath contrib CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/10 01:28:32 Modified files: sys/net : netisr.h Log message: No more bluetooth in netintr(), so delete NETISR_BT. Zap the declaration for btintr(), as well as the also gone atintr() and clnlintr() CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/10 01:29:45 Modified files: usr.bin/fstat : fstat.c Log message: Don't need to know how to format bluetooth socket info here CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/10 01:31:58 Modified files: regress/lib/libc/asr/bin: common.c Log message: AF_IMPLINK and AF_BLUETOOTH are gone, but add printing of SOCK_SEQPACKET CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 01:44:57 Modified files: security : Makefile Log message: +heimdal ok sthen@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 01:49:27 Modified files: print/cups : Makefile distinfo Log message: SECURITY update to cups-1.7.5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 01:51:21 Modified files: misc/gramps : Makefile misc/gramps/pkg: PLIST Log message: Put icon under share/pixmaps so that it's found by the desktop file. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 01:54:56 Modified files: misc/hwdata : Makefile distinfo Log message: Update to hwdata-0.268. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 01:56:40 Modified files: print/poppler : Makefile distinfo print/poppler/patches: patch-Makefile_in print/poppler/pkg: PLIST-main Log message: Update to poppler-0.26.3. input/ok kili@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 02:01:05 Modified files: devel/harfbuzz : Makefile distinfo devel/harfbuzz/pkg: PLIST-main Log message: Update to harfbuzz-0.9.34. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 02:05:35 Modified files: devel/vte3 : Makefile devel/vte3/patches: patch-src_vteaccess_c Log message: Merge upstream's fix for vte crash. ok jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 02:09:34 Modified files: sysutils/salt-testing: Makefile distinfo Log message: Update to salt-testing-2014.8.5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 02:11:06 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-1.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 02:28:13 Modified files: sysutils/salt : Makefile distinfo sysutils/salt/pkg: PLIST Log message: Update to salt-2014.1.10. CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 02:55:30 Modified files: infrastructure/bin: pkg_subst Log message: new flag -i, to ignore owner/group errors CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 02:59:48 Modified files: infrastructure/mk: pkgpath.mk perl.port.mk bsd.port.mk Log message: framework to allow fake as non-root, based on an idea and initial patch by naddy. Not turned on yet, as it involves a critical new file. Basically: - introduce new variations on SUBST cmds to install various files - use pkg_subst -i in !root mode - unhardcode install path where possible, to allow for an install-wrapper that disregards owner/groups. - do links during fake to disable chown/chgrp/install. Extra tweak (always-wrap) to actually encode "perl ${PORTSDIR}/infra/bin/install-wrapper" as an install script, required by a few ports that keep track of the install script for later (eg., ruby, postgres). CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 03:02:21 Modified files: infrastructure/mk: bsd.port.mk Log message: okay, SUBST_DATA/SUBST_PROGRAM/SUBST_MAN are always -c, so encode it as well CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/10 03:11:07 Modified files: lib/libsndio : sio.c Log message: debug level test for clock_gettime() calls should match ok ratchov@ CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/08/10 03:15:40 Modified files: share/man/man4 : vio.4 Log message: Typo. ok deraadt@ jmc@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/10 03:23:06 Modified files: sys/msdosfs : msdosfs_vnops.c sys/miscfs/fuse: fuse_vnops.c Log message: fix kqueue read/write filters for msdosfs and fusefs ok tedu@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 03:58:07 Modified files: audio/umurmur : Makefile cad/fritzing : Makefile comms/smstools : Makefile databases/iodbc: Makefile databases/pkglocatedb: Makefile databases/ports-readmes-dancer: Makefile databases/py-couchdb: Makefile databases/redis: Makefile devel/boris : Makefile devel/intellij : Makefile devel/libJudy : Makefile devel/libaudiofile: Makefile devel/lualdoc : Makefile devel/ocaml-mlgmp: Makefile devel/vtcl : Makefile editors/vim : Makefile emulators/sdlmame: Makefile emulators/sdlmess: Makefile games/clonekeen: Makefile games/freecol : Makefile games/opentyrian: Makefile games/renpy : Makefile games/singularity: Makefile geo/qgis : Makefile lang/abcl : Makefile lang/clojure : Makefile lang/icon/interp: Makefile lang/lua/5.2 : Makefile lang/spidermonkey: Makefile mail/exim : Makefile mail/mozilla-thunderbird: Makefile mail/rss2email : Makefile misc/rocrail : Makefile multimedia/get_iplayer: Makefile multimedia/mediatomb: Makefile net/coccinella : Makefile net/jnettop : Makefile net/miniupnp/miniupnpd: Makefile net/rrdtool : Makefile net/zabbix : Makefile print/hplip : Makefile print/lyx : Makefile productivity/projectlibre: Makefile productivity/radicale: Makefile productivity/taskd: Makefile security/cyrus-sasl2: Makefile sysutils/logtail: Makefile textproc/dblatex: Makefile textproc/xml2rfc: Makefile www/chive : Makefile www/chromium : Makefile www/dillo : Makefile www/firefox-esr: Makefile www/mozilla-firefox: Makefile www/opengroupware: Makefile www/seamonkey : Makefile www/xombrero : Makefile x11/i3 : Makefile x11/qwt : Makefile Log message: use more specific version of SUBST_* where appropriate CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/08/10 04:01:03 Modified files: usr.sbin/pkg_add/OpenBSD: ArcCheck.pm Ustar.pm Log message: if pkg_create is run as non-root, restory correct group/owner to root/bin. also, remove write permissions without explicit modes. Allows fake installs to keep directories/files writable while producing correct package. CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/08/10 04:03:46 Modified files: usr.sbin/pkg_add/OpenBSD: Ustar.pm Log message: Ouch... fuck cvs CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/08/10 04:04:39 Modified files: usr.sbin/pkg_add/OpenBSD: Ustar.pm Log message: comment what's going on CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 04:07:10 Modified files: infrastructure/man/man1: pkg_subst.1 Log message: document -i CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/08/10 04:10:21 Modified files: share/man/man5 : bsd.port.mk.5 Log message: Document SUBST_* CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 04:11:05 Modified files: devel/netbeans : Makefile Log message: missed SUBST_* CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 04:11:47 Modified files: security/samhain: Makefile www/mimetex : Makefile www/wwwcount : Makefile Log message: more appropriate uses of INSTALL_PROGRAM. Unhardcode chown. CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 04:13:18 Modified files: lang/ocaml : ocaml.port.mk x11/kde4 : kde4.port.mk Log message: _FAKESUDO where needed, from naddy CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/08/10 04:20:34 Modified files: net/totd : Makefile Log message: unhardcode path to install CVSROOT: /cvs Module name: src Changes by: ratchov@cvs.openbsd.org 2014/08/10 04:25:04 Modified files: usr.bin/aucat : wav.c Log message: initialize mmcpos, found by guenther CVSROOT: /cvs Module name: src Changes by: ratchov@cvs.openbsd.org 2014/08/10 04:25:35 Modified files: usr.bin/aucat : dev.c Log message: typo in debug message CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/10 05:00:36 Modified files: sys/dev/usb : ehci.c ohci.c uhci.c usbdi.c xhci.c Log message: Set and check for XFER_BUSY in the common methods instead of doing it in every HC driver. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/10 05:06:54 Modified files: net/gssdp : Makefile distinfo net/gssdp/pkg : PLIST Log message: update to gssdp-0.14.8 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/10 05:11:36 Modified files: devel/srecord : Makefile Log message: remove BROKEN-sparc64 as it's autofixed; it works fine now on sparc64. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/10 05:12:26 Modified files: net/icinga/web : Makefile net/icinga/web/patches: patch-etc_apache2_icinga-web_conf_in Log message: don't hardcode path to mod_rewrite.so so that the default config works with openbsd-httd-openbsd again. ok sthen@ rpe@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/10 05:18:57 Modified files: sys/dev/usb : ehci.c ohci.c uhci.c usb.c usbdi.h usbf_subr.c xhci.c Log message: Since USB xfer pools are accessed in interrupt context, initialize them with the correct ipl to prevent your CPU from locking against itself. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/10 05:21:49 Modified files: sys/dev/usb : xhci.c Log message: Merge xhci_device_setup() into xhci_pipe_init() there's no reason to have a separate function anymore, it is just a wrapper around the "set address" command. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/10 05:23:02 Modified files: share/man/man5 : bsd.port.mk.5 Log message: some Ev fixes; CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/08/10 05:26:07 Modified files: usr.sbin/pkg_add: package.5 Log message: zap trailing whitespace CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/10 05:34:27 Modified files: infrastructure/mk: bsd.port.mk Log message: fix path to install(1) CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/10 05:37:28 Modified files: sysutils/ruby-shadow: Makefile distinfo sysutils/ruby-shadow/pkg: PLIST Log message: update to ruby-shadow-2.3.4 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/10 05:57:05 Modified files: graphics/evince: Makefile distinfo Log message: update to evince-3.12.2 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/10 05:59:17 Modified files: devel/libpeas : Makefile distinfo devel/libpeas/patches: patch-tests_libpeas_engine_c Log message: update to libpeas-1.10.1 CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/08/10 06:28:09 Modified files: share/man/man4 : vio.4 Log message: Note that qemu 1.7.2 has the VLAN bug fix, too CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/10 06:48:43 Modified files: sys/dev/usb : uhidev.c Log message: sizeof() a pointer of the right struct to appease clang. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/10 06:58:49 Modified files: sys/dev/usb : usb_subr.c Log message: Do not allocate space for the whole structure when we just want to store a pointer, found by clang. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/10 07:32:14 Modified files: sys/dev/usb : uhub.c Log message: Ask for the descriptor size corresponding to the number of ports present in the hub, not from some random value from the stack. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/10 08:42:56 Modified files: lib/libssl/src/ssl: d1_clnt.c d1_meth.c d1_srvr.c s23_clnt.c s23_lib.c s23_meth.c s23_srvr.c s3_clnt.c s3_meth.c s3_srvr.c ssl.h ssl_lib.c ssl_locl.h ssl_sess.c t1_clnt.c t1_meth.c t1_srvr.c Log message: Since we no longer need to support SSLv2-style cipher lists, start unravelling the maze of function pointers and callbacks by directly calling ssl3_{get,put}_cipher_by_char() and removing the ssl_{get,put}_cipher_by_char macros. Prompted by similar changes in boringssl. ok guenther. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/10 08:57:04 Modified files: lib/libssl/src/ssl: s3_lib.c Log message: Remove disabled (weakened export and non-ephemeral DH) cipher suites from the cipher list. This reduces code size, saves data segment space and prevents them from being turned back on at runtime by flipping a bit in memory. ok guenther@ CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/08/10 08:59:22 Modified files: distrib/miniroot: install.sh upgrade.sh Log message: { foo ; bar ; } -> { foo; bar; } OK krw@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/10 09:06:15 Modified files: lib/libssl/src/ssl: s3_lib.c Log message: Tweak cipher list comments and add missing cipher value comments. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/08/10 10:32:28 Modified files: distrib/miniroot: install.sh install.sub Log message: Convert if foo; then bar; fi blocks to foo && bar but leave out enable_network() because it shares code&style with /etc/netstart. No functional change. with feedback and OK krw@ halex@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/10 10:36:13 Modified files: regress/lib/libutil/bcrypt_pbkdf: bcrypt_pbkdf_test.c Log message: guenther wants a copyright CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/10 10:51:53 Modified files: net/tor : Makefile distinfo Log message: Update to tor 0.2.4.23; mitigates the attack described at https://blog.torproject.org/blog/tor-weekly-news-%E2%80%94-august-6th-2014 CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/10 11:15:18 Modified files: usr.sbin/sysmerge: sysmerge.8 sysmerge.sh Log message: - add -p to SYNOPSIS - the argument to -s is not optional ok ajacoutot CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/10 12:32:23 Modified files: x11/virt-viewer: Makefile distinfo x11/virt-viewer/pkg: PLIST Log message: update to virt-viewer-1.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/10 13:23:00 Modified files: net/wireshark : Makefile distinfo net/wireshark/patches: patch-Makefile_in Log message: SECURITY update to wireshark 1.10.9: dissector crashes, buffer underruns. patch-Makefile_in is now empty but cannot be removed until trees are fully unlocked. Noted in an XXX comment in Makefile. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/10 13:50:37 Modified files: textproc/calibre: Makefile distinfo textproc/calibre/patches: patch-src_calibre_gui2___init___py patch-src_calibre_linux_py textproc/calibre/pkg: PLIST Log message: update to Calibre 1.48.0 CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/10 14:39:03 Modified files: infrastructure/bin: portcheck Log message: Add check for WANTLIBs hidden by RUN_DEPENDS. This WILL eventually break bulk build, and I know at least two people (ajacoutot@ and me) that were already bitten by this problem. This somewhat increase check time, unfortunately, but not too much. Test for this feature to follow after full unlock. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/10 14:41:54 Modified files: infrastructure/bin: portcheck Log message: Add support for SKIPDIR, STARTDIR and STARTAFTER environment variables, like bsd.port.subdir.mk does. Allows to continue a long "portcheck -A" session. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/10 14:46:04 Modified files: infrastructure/bin: portcheck Log message: Get rid of "|| error=true" where it's not needed. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/08/10 14:54:17 Modified files: distrib/miniroot: install.sub Log message: [] -> [[]] OK krw@ "well ok" halex@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/10 15:02:39 Modified files: x11/tellico-kde4: Makefile Log message: Add a note to remove patch on the next update, upstream did a good job. CVSROOT: /cvs Module name: src Changes by: zhuk@cvs.openbsd.org 2014/08/10 15:09:26 Modified files: share/man/man5 : port-modules.5 Log message: Improve variables listing in x11/kde4 module description. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/10 15:31:54 Modified files: games/manaplus : Makefile distinfo games/manaplus/pkg: PLIST Log message: Update to 1.4.8.2 CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/10 15:35:32 Modified files: games/alephone/alephone: Makefile games/alephone/alephone/patches: patch-Source_Files_FFmpeg_SDL_ffmpeg_c Log message: Fix alephone for newer FFmpeg API. ok bentley@ CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/10 15:50:41 Modified files: net/lftp : Makefile distinfo net/lftp/patches: patch-configure net/lftp/pkg : PLIST Log message: Update to lftp-4.5.3, from Rafael Sadowski. While here: - remove MAINTAINER, mail address bounces - fix (rather, hack) libssl detection which got broken with the removal of RAND_egd ok sthen@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/10 15:55:18 Modified files: usr.sbin/relayd: relay_http.c Log message: There was a race in relayd that caused connections to hang. It happend with non-persistent PUT connections that had a very short body. If the whole body was read from the client before the connection to the server was set up, the event callback was not called. Do the regular checks after relay_connect() succeeded. OK reyk@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/10 16:19:12 Modified files: x11 : Makefile Log message: Disable nagstamon since it depends on a new port and we are not allowed to import anything just yet. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/10 17:44:20 Modified files: sys/kern : kern_sig.c Log message: Write the core file of a non-suid process into the current directory even if sysctl kern.nosuidcoredump has been set to 2 or 3. This allows a regular user to debug his programs again. OK guenther@ deraadt@ CVSROOT: /cvs Module name: www Changes by: tedu@cvs.openbsd.org 2014/08/10 18:10:21 Modified files: . : errata54.html errata55.html Log message: openssl 1.0.1i fixes CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/10 19:06:22 Modified files: lib/libssl/src/ssl: s3_lib.c ssl_locl.h ssl_sess.c Log message: Provide a ssl3_get_cipher_by_id() function that allows ciphers to be looked up by their ID. For one, this avoids an ugly mess in ssl_sess.c, where the cipher value is manually written into a buffer, just so the cipher can be located using ssl3_get_cipher_by_char(). ok bcook@ miod@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/10 19:10:42 Modified files: lib/libssl/src/ssl: s3_clnt.c ssl3.h ssl_lib.c Log message: Currently, ssl3_put_char_by_bytes(NULL, NULL) is just a long handed way of writing "2". Add a define for the SSL3_CIPHER_VALUE_SIZE (rather than using a less-readable hardcoded constant everywhere) and replace the ssl3_put_char_by_bytes(NULL, NULL) calls with it. ok bcook@ miod@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/10 22:18:19 Modified files: regress/usr.bin/mandoc: Makefile.inc regress/usr.bin/mandoc/man/TH: case.out_lint emptydate.out_lint noTH.out_lint twoargs.out_lint regress/usr.bin/mandoc/man/TP: eof.out_ascii eof.out_lint regress/usr.bin/mandoc/man/nf: dupe.out_lint regress/usr.bin/mandoc/mdoc/An: break.in break.out_ascii regress/usr.bin/mandoc/mdoc/At: invalid.out_lint regress/usr.bin/mandoc/mdoc/Bd: badargs.out_lint regress/usr.bin/mandoc/mdoc/Bf: badargs.out_lint regress/usr.bin/mandoc/mdoc/Bl: badargs.out_lint bareTa.out_lint column.in column.out_ascii emptyhead.out_lint emptyitem.out_lint emptytag.out_lint notype.out_lint regress/usr.bin/mandoc/mdoc/Dt: badarch.out_lint badsec.out_lint case.out_lint dupe.in dupe.out_ascii dupe.out_lint order.out_lint regress/usr.bin/mandoc/mdoc/Nm: Makefile badNAME.out_ascii badNAME.out_lint badNAMEuse.out_ascii badNAMEuse.out_lint emptyNAME.out_ascii emptyNAMEuse.out_ascii regress/usr.bin/mandoc/mdoc/Sh: first.out_lint order.out_lint regress/usr.bin/mandoc/mdoc/St: badargs.out_lint regress/usr.bin/mandoc/roff/de: escname.out_lint regress/usr.bin/mandoc/roff/nr: escname.out_lint regress/usr.bin/mandoc/roff/string: name.out_lint Log message: start catching up with recent code changes, but no new files yet CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/10 22:45:19 Modified files: lib/libssl/src/ssl: ssl2.h Log message: Remove now-unused SSL2_STATE as well as ssl2-specific state machine values. ok guenther@ jsing@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/10 22:46:42 Modified files: lib/libssl/src/ssl: s3_srvr.c Log message: Unchecked memory allocation and potential leak upon error in ssl3_get_cert_verify(). ok guenther@ jsing@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/11 00:30:39 Modified files: usr.sbin/sysmerge: sysmerge.8 Log message: Move a sentence to the corresponding option description. from jmc@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/11 00:55:51 Modified files: x11/wxSVG : Makefile distinfo x11/wxSVG/pkg : PLIST Log message: Update to wxSVG 1.4.2. ok ajacoutot@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/11 02:21:55 Modified files: usr.sbin/ldapd : ldapd.8 Log message: add a caveat about databases; From: Matthew Weigel ok gilles CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/11 03:03:27 Modified files: usr.sbin/sysmerge: sysmerge.8 sysmerge.sh Log message: Steal stripcom() from /etc/rc to parse sysmerge.ignore. CVSROOT: /cvs Module name: www Changes by: gilles@cvs.openbsd.org 2014/08/11 03:25:55 Modified files: opensmtpd : index.html Log message: replace outdated mirror CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/11 03:47:56 Modified files: usr.sbin/arp : arp.c usr.sbin/ndp : ndp.c Log message: Do not try to delete RTF_LOCAL entries. Such routes are automatically created /deleted by the kernel when an IP address is added/removed on/from an interface and should not be manipulated by userland tools. ok henning@, jca@ CVSROOT: /cvs Module name: src Changes by: gilles@cvs.openbsd.org 2014/08/11 03:50:51 Modified files: usr.sbin/smtpd : table_api.c Log message: missing memset in table_api.c (currently only used by pluggable tables) diff from Martijn van Duren CVSROOT: /cvs Module name: www Changes by: dlg@cvs.openbsd.org 2014/08/11 04:00:45 Modified files: . : 56.html Log message: mpath was enabled this release. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/11 04:46:19 Modified files: lib/libssl/src/ssl: ssl_lib.c Log message: Check the return value of sk_SSL_CIPHER_new_null(), since it allocates memory and can return NULL. ok miod@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/11 05:18:37 Modified files: sysutils/ykpers: Makefile distinfo sysutils/ykpers/pkg: PLIST Log message: update to ykpers 1.15.2 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/11 05:34:42 Modified files: infrastructure/mk: bsd.port.mk Log message: When copying pkg/README{,-*} from the port directory, pass -m to SUBST_CMD to ensure that a sane file mode are set. Also use SUBST_CMD -m for rc.d scripts (it wasn't available at the time the current code using a separate chmod was written). Discussed with espie, slight tweaks to previous diff to take _FAKESUDO into account. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/08/11 05:37:08 Modified files: net/p5-Net-Whois-RIPE: Makefile distinfo Log message: Update p5-Net-Whois-RIPE to 2.005004. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/11 05:50:41 Modified files: sys/netinet : if_ether.c Log message: Convert ARP llinfo allocation to pool(9). ok henning@, dlg@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/11 05:59:05 Modified files: sys/net : route.c rtsock.c Log message: Put back the checks about RTF_LOCAL routes now that userland tools are aware of them. Original commit message was: Reserve the highest route priority for kernel-managed routes and prevent userland from playing with the local and broadcast flags. ok claudio@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/11 06:37:36 Modified files: sys/kern : subr_pool.c Log message: bring back r1.131: take the pools mutex when copying stats out of it in the sysctl path so we are guaranteed a consistent snapshot. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/11 06:45:45 Modified files: sys/dev/cardbus: if_fxp_cardbus.c if_re_cardbus.c if_rl_cardbus.c if_xl_cardbus.c sys/dev/eisa : if_ep_eisa.c sys/dev/isa : if_ec.c if_ef_isapnp.c if_eg.c if_el.c if_ep_isa.c if_ep_isapnp.c if_ie.c if_lc_isa.c if_ne_isa.c if_ne_isapnp.c if_sm_isa.c if_we.c sys/dev/pcmcia : if_cnw.c if_ep_pcmcia.c if_malo.c if_sm_pcmcia.c if_xe.c sys/dev/sbus : be.c if_gem_sbus.c if_hme_sbus.c if_ti_sbus.c qe.c Log message: Fewer CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/11 06:57:14 Modified files: share/man/man5 : login.conf.5 Log message: document "tc"; From: Edward ok millert CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/11 07:25:23 Modified files: etc/rc.d : rc.subr Log message: Make it possible to pass arguments to _rc_parse_conf(). ok robert@ CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/11 07:29:43 Modified files: lib/libcrypto/crypto/arch/amd64: Makefile.inc lib/libssl/src/crypto/engine: eng_rsax.c lib/libssl/src/crypto/evp: e_rc4_hmac_md5.c Log message: Guard RSA / RC4-5 ASM when NO_ASM is not defined Most assembly blocks remain inactive if OPENSSL_NO_ASM is not defined, only enabling inline assembly, but the RSA / RC4-5 blocks (used only in amd64 systems) turn on implicitly. Guard these two as well. This simplifies enabling just inline ASM in portable, no effective change in OpenBSD. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/11 07:31:42 Modified files: sys/kern : subr_pool.c Log message: bring back r1.132: provide a pool_count global so we can figure out how many pools there are active without having to walk the global pool_list. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/11 07:51:07 Modified files: sys/net : if.c sys/netinet : if_ether.c sys/netinet6 : nd6.c Log message: Use the RTF_LOCAL flag instead of abusing the RTF_LLINFO flag when adding local route entries. This hack made sense when we didn't have the RTF_LOCAL flag, but since some months it is set on every local route. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/11 08:02:08 Modified files: devel/pango : Makefile devel/pango/pkg: PLIST x11/gnome/gdm : Makefile x11/gnome/gdm/pkg: PLIST Log message: Drop XXX, we are past 5.6 now. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/11 09:25:30 Modified files: databases/evolution-data-server: Makefile distinfo Log message: Update to evolution-data-server-3.12.5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/11 09:25:51 Modified files: mail/evolution : Makefile distinfo Log message: Update to evolution-3.12.5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/11 09:26:12 Modified files: mail/evolution-ews: Makefile distinfo Log message: Update to evolution-ews-3.12.5. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/11 09:26:33 Modified files: usr.sbin/httpd : server_fcgi.c Log message: make a few variables more local CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/11 10:18:10 Modified files: . : MODULES 3RDPARTY Log message: update CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/11 10:49:31 Modified files: devel/git : Makefile distinfo devel/git/patches: patch-Makefile devel/git/pkg : PLIST-main Log message: Update to 2.0.4; also install the "multimail" hooks as requested by djm@ ok benoit@ (maintainer) CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 10:54:20 Modified files: sys/arch/octeon/conf: GENERIC Log message: Add option USER_PCICONF for pcidump(8) to be able to do its magic. CVSROOT: /cvs Module name: ports Changes by: stsp@cvs.openbsd.org 2014/08/11 11:36:18 Modified files: devel/subversion: Makefile distinfo Log message: Update to Subversion 1.8.10. -stable backports of important fixes will follow in about a week when new files can be created in the tree again. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 12:08:17 Modified files: sys/arch/octeon/dev: cn30xxasx.c cn30xxfau.c cn30xxfpa.c cn30xxgmx.c cn30xxpow.c cn30xxsmi.c if_cnmac.c Log message: De-static so that my ddb backtrace get closer to reality. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 12:29:56 Modified files: sys/arch/octeon/dev: cn30xxasx.c cn30xxasxreg.h cn30xxasxvar.h cn30xxbootbusreg.h cn30xxciureg.h cn30xxfpa.c cn30xxfpareg.h cn30xxgmx.c cn30xxgmxreg.h cn30xxgmxvar.h cn30xxipd.c cn30xxipdreg.h cn30xxipdvar.h cn30xxpip.c cn30xxpipreg.h cn30xxpipvar.h cn30xxpko.c cn30xxpkovar.h cn30xxpow.c cn30xxpowreg.h cn30xxpowvar.h if_cnmac.c if_cnmacvar.h octhcireg.h sys/arch/octeon/include: octeonvar.h Log message: Remove evcnt and %b format strings relying upon SEIL extensions. This gives OCTEON_ETH_DEBUG kernels a chance to build. No functional change for regular kernels. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 12:33:36 Modified files: sys/conf : newvers.sh Log message: -current dammit CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/11 12:34:59 Modified files: net/icinga/core: Makefile net/icinga/core/patches: patch-configure Log message: use the correct format string for time_t on i386, unbreaking logging there. patch bodged into patch-configure for now, to be split out after full unlock. CVSROOT: /cvs Module name: src Changes by: tobias@cvs.openbsd.org 2014/08/11 12:39:41 Modified files: usr.sbin/dhcpd : dhcp.c Log message: validate len field for proper length, not just "not zero." ok krw@ CVSROOT: /cvs Module name: src Changes by: tobias@cvs.openbsd.org 2014/08/11 12:41:13 Modified files: sbin/dhclient : dhclient.c Log message: When parsing 32 bit values, verify that we received 4 bytes. ok krw@ CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/08/11 12:44:02 Modified files: devel/p5-Data-Validate: Makefile distinfo Log message: update p5-Data-Validate to 0.09 CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 12:52:54 Modified files: sys/arch/octeon/dev: cn30xxgmx.c cn30xxgmxvar.h Log message: Get rid of the `quirks' member, which is never initialized (but by zero at softc creation) anyway. Sorry, we are not trying to support SEIL-specific hardware at this point. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 12:56:49 Modified files: sys/arch/octeon/dev: cn30xxpow.c if_cnmac.c sys/arch/octeon/octeon: machdep.c Log message: Do not use CKSEG0 to quickly map physical addresses, but XKPHYS, for we are not limited to 512MB physmem. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 13:00:50 Modified files: sys/arch/octeon/dev: cn30xxgmx.c if_cnmac.c octcf.c octeon_pcibus.c octrtc.c Log message: Do not extern octeon_boot_info, declares it for you. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 13:16:56 Modified files: sys/kern : vfs_biomem.c Log message: Do not pmap_update(pmap_kernel()) within the `create mappings' loop, but only once after it is over. CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/08/11 13:19:40 Modified files: net/p5-Net-SMTP-TLS-ButMaintained: Makefile distinfo net/p5-Net-SMTP-TLS-ButMaintained/pkg: DESCR Log message: - update p5-Net-SMTP-TLS-ButMaintained to 0.24 - mention that this perl module is deprecated OK sthen@ CVSROOT: /cvs Module name: src Changes by: kili@cvs.openbsd.org 2014/08/11 14:16:04 Modified files: etc/rc.d : rc.subr Log message: Let _rc_parse_conf stick to parsing /etc/rc.conf and /etc/rc.conf.local if it's invoked without parameters. It's simpler than adding adding /etc/rc.conf and /etc/rc.conf.local parameters whereever _rc_parse_conf is used (e.g. /etc/rc and /etc/netstart). While here, replace a for foo in "$@"; do something; done by for foo; do something; done ok aja@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/11 14:24:57 Modified files: etc/rc.d : rc.subr Log message: Typo. ok kili@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/11 14:28:47 Modified files: bin/ksh : io.c Log message: Still need to separately set FD_CLOEXEC if the new fd was >= FDBASE. Affects scripts that directly use 9 of the first 10 fds. noted by miod@ CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/08/11 14:30:22 Modified files: sys/dev/pci : pcidevs Log message: Add some Intel Z97 chipset devices; ok deraadt@ CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/08/11 14:30:51 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/08/11 14:56:15 Modified files: sysutils/ansible: Makefile distinfo sysutils/ansible/pkg: PLIST Log message: Update ansible to 1.7 For fixes, new features and improvments see: https://github.com/ansible/ansible/blob/release1.7.0/CHANGELOG.md OK aja@ CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/08/11 15:03:03 Modified files: www/selfoss : Makefile distinfo www/selfoss/pkg: PLIST README Log message: Update to selfoss 2.11 For fixes and improvments see: https://github.com/SSilence/selfoss/releases/tag/2.11 README: - Point to nginx configuration examples - Add hint how to update with authentication enabled OK aja@ CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/08/11 16:14:30 Modified files: usr.bin/tmux : cmd-select-pane.c tmux.1 tmux.h window.c Log message: Add flags to selectp to enable and disable input to a pane, from Anish Athalye. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/08/11 16:18:16 Modified files: usr.bin/tmux : screen.c tmux.h window-copy.c Log message: Fix two copy mode problems: 1. In vi mode the selection doesn't include the last character if you moved the cursor up or left. 2. In emacs mode the selection includes the last character if you moved the cursor to the left. From Balazs Kezes. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/08/11 16:39:57 Modified files: usr.bin/tmux : window-copy.c mode-key.c Log message: No need to repeat other-end more than once, from Juho Pohjala. Also add it to the commands list while here. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 18:05:47 Modified files: productivity/attica: Makefile Log message: Fix WANTLIB and add HOMEPAGE for libattica. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 18:15:43 Modified files: graphics/qimageblitz: Makefile Log message: Fix WANTLIB for qimageblitz. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 18:30:35 Modified files: infrastructure/bin: portcheck Log message: Make perl code in check_hardcoded() return non-zero on failure. More standard and error-prone style. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 18:37:44 Modified files: infrastructure/bin: portcheck Log message: Fix make(1) calls when SKIPDIR framework is in use. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 18:41:00 Modified files: x11/kde4/graphics-mobipocket: Makefile x11/kde4/graphics-mobipocket/pkg: PLIST Log message: update-desktop-database isn't needed here, spotted by portcheck. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 18:53:38 Modified files: infrastructure/man/man1: portbump.1 Log message: Make description of operation modes combining more clear. Add missing .Ev while there. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/11 18:59:27 Modified files: sys/kern : subr_pool.c Log message: bring back r1.132. this is a bit different cos we're still using splvm to protect pool_list rather than the rwlock that made i386 blow up: provide a pool_count global so we can figure out how many pools there are active without having to walk the global pool_list. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/11 19:01:11 Modified files: sys/kern : subr_pool.c Log message: bring back r1.134: inline is the new __inline CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 19:03:51 Modified files: x11/kde4/kimono: Makefile Log message: Another hidden WANTLIB - didn't bite us yet thanks to mono.port.mk, but it's better be safe than sorry still. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/11 19:05:46 Modified files: sys/kern : subr_pool.c Log message: bring back r1.135: matthew@ noticed i wasnt populating npages in the kinfo_pool sent to userland. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 19:08:31 Modified files: x11/kde4/kig : Makefile Log message: Since the time of enabling Boost+Python support in Kig, the devel/boost became an LDEP, actually. Spotted by portcheck. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/11 19:25:21 Modified files: sys/kern : subr_pool.c Log message: i accidentally removed the check for whether the requested pool in the sysctl path exists. return ENOENT instead of trying a NULL deref. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 19:31:39 Modified files: x11/herbstluftwm: Makefile Log message: Use LOCALBASE instead of /usr/bin/env shebang hack. okay bcallah@ (MAINTAINER) CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/11 19:31:43 Modified files: sys/kern : subr_pool.c Log message: sigh. when returning ENOENT in the sysctl path, unlock on the way out. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/11 19:44:08 Modified files: infrastructure/bin: portcheck Log message: Properly ignore default.kde* files, they live under share/icons/ directly. CVSROOT: /cvs Module name: ports Changes by: lteo@cvs.openbsd.org 2014/08/11 21:00:16 Modified files: net/daq : Makefile Log message: Update MASTER_SITES CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 22:28:07 Modified files: sys/arch/mips64/mips64: mips64_machdep.c Log message: Pass 0 instead of uvm_map_hint() to uvm_map() in exec_md_map() to figure out where to put the fpu assist page, for uvm_map_hint() may return an address outside userland bounds due to aggressive randomization. Passing zero will still get a random address, but correctly bounded. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 22:29:05 Modified files: sys/uvm : uvm_map.c Log message: Revert 1.173 now that the real cause of the octeon regression has been fixed. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/11 22:30:21 Modified files: sys/arch/mips64/mips64: cache_octeon.c Log message: Better cache information gathering. Only affects information put in dmesg. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/12 01:59:34 Modified files: infrastructure/bin: pkg_subst Log message: Sync usage after addition of -m flag. ok jca@ and kirby@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/12 02:06:28 Modified files: multimedia/k3b-kde4: Makefile multimedia/k3b-kde4/patches: patch-plugins_decoder_ffmpeg_k3bffmpegwrapper_cpp Log message: Prepare for new FFMpeg. Will work on both old and new, but the bump should happen now, as the patch it uses routines we have in current FFMpeg already. Initial prodding by brad@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/08/12 04:09:56 Modified files: databases/redis: Makefile distinfo databases/redis/patches: patch-src_Makefile patch-src_Makefile_dep patch-src_redis_h Log message: Update to redis-2.8.13 CVSROOT: /cvs Module name: ports Changes by: stsp@cvs.openbsd.org 2014/08/12 05:01:44 Modified files: net/serf : Makefile distinfo Log message: Update to serf 1.3.7. CVSROOT: /cvs Module name: ports Changes by: stsp@cvs.openbsd.org 2014/08/12 05:02:50 Modified files: net/serf : Makefile Log message: In net/serf, define TEST_TARGET so regression tests can be run. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/12 06:44:48 Modified files: net/ucspi-unix : Makefile Log message: Fix dead HOMEPAGE. ok avsm@ (MAINTAINER) CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/12 07:52:08 Modified files: sys/net : route.c route.h rtsock.c Log message: route_cb is internal to rtsock.c CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/12 07:58:41 Modified files: net/munin : Makefile net/munin/files: sensors_ Log message: switch sensors_ plugin graph category from system to sensors request and ok jasper@ CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/12 08:04:14 Modified files: www/wordpress : Makefile distinfo www/wordpress/pkg: PLIST Log message: Security update to wordpress-3.9.2 Details are here: http://wordpress.org/news/2014/08/wordpress-3-9-2/ Ok gonzalo@ (maintainer) CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/12 08:38:28 Modified files: sys/net : pf.c pf_ioctl.c Log message: Apart from some minor code reshuffling the big change is that we start with a ruleset pointer assigned to pf_main_ruleset so that pf_purge_rule doesn't get called with a NULL. Prompted by the discussion with Alexandr Nedvedicky . OK henning CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/12 08:42:06 Modified files: sys/net : pf.c Log message: Make sure that pf_step_into_anchor always saves a pointer to the rule that owns the anchor on the pf anchor stack. There's no reason why we should check for depth here. As a side effect this makes sure that the correct nested anchor gets it's counter bumped instead of the top most. For the save/restore symmetry pf_step_out_of_anchor is made to always restore previous value of the anchor rule. depth == 0 means what we a at the top (main ruleset). OK henning CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/12 09:02:52 Modified files: lib/libssl/src/crypto: md32_common.h Log message: Replace intrinsic ROTATE macros with an inline. Without the cast/mask, the compiler is allowed to optimize this directly to the correct CPU intrinsic for rotate. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/12 09:29:33 Modified files: sys/net : pf.c pf_ioctl.c pfvar.h Log message: Finally implement what's stated in the man page regarding parent anchors for "once" rules: "In case this is the only rule in the anchor, the anchor will be destroyed automatically after the rule is matched." Employ an additional pointer pair to keep track of the parent ruleset containing the anchor that we want to remove. OK henning CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/12 13:19:42 Modified files: usr.bin/mandoc : out.h Log message: The macro SCALE_HS_INIT() is always passed the result of strlen() or an equivalent number as its argument, and strlen() measures the width of a string in characters, not in basic units. No functional change right now, but important for the upcoming scaling unit fixes. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/12 13:27:57 Modified files: usr.bin/mandoc : out.c Log message: In mdoc(7) and man(7), if a width is given as a bare number without specifying a unit, the implied unit is 'n' (on the terminal, one character position; in PostScript, half of the current font size in points), not 'u' (roff output device basic unit). No functional change right now, but important for the upcoming scaling unit fixes. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/12 13:33:59 Modified files: sys/arch/mips64/mips64: tlbhandler.S Log message: addu -> PTR_ADDU when doing address arithmetic in the octeon-specific code path. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/12 13:35:28 Modified files: sys/arch/octeon/include: vmparam.h Log message: Lower VM_PHYSSEG_MAX from the mips64 default to a generous 4, and change allocation strategy to VM_PSTRAT_BIGFIRST. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/12 14:36:41 Modified files: lib/libssl/src/doc/crypto: ASN1_OBJECT_new.pod lib/libssl/src/doc/ssl: SSL_CTX_set_max_cert_list.pod Log message: Merge a patch that i successfully pushed to OpenSSL, original OpenSSL commit message follows: Fixed as shown; to be released post-1.0.2 commit bebbb11d132cc149f7713d6693703f8bfae10072 Author: Ingo Schwarze Date: Sat Jan 18 11:46:25 2014 +0100 RT3239: Extra comma in NAME lines of two manpages In two OpenSSL manual pages, in the NAME section, the last word of the name list is followed by a stray trailing comma. While this may seem minor, it is worth fixing because it may confuse some makewhatis(8) implementations. While here, also add the missing word "size" to the one line description in SSL_CTX_set_max_cert_list(3). Reviewed by: Dr Stephen Henson CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/12 19:00:16 Modified files: usr.sbin/tftpd : tftpd.c Log message: setsockopt sets errno on failure, so we can use err instead of errx when handling the error. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/12 19:03:57 Modified files: usr.sbin/tftpd : tftpd.c Log message: use errc instead of juggling errno values in tftpd_listen. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/13 00:04:10 Modified files: lib/libcrypto/crypto: arc4random_linux.h arc4random_osx.h arc4random_solaris.h Log message: munmap correct object in (extremely unlikely, and effectively terminal) case of failing to map the 2nd object. found by Paul Maurers CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/08/13 00:18:48 Modified files: security/opensc: Makefile distinfo security/opensc/patches: patch-configure_ac patch-src_pkcs11_Makefile_in patch-src_tests_Makefile_in security/opensc/pkg: PLIST Log message: Update to opensc-0.14.0 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/08/13 00:19:59 Modified files: x11/xbindkeys : Makefile distinfo x11/xbindkeys/patches: patch-xbindkeys_1 Log message: Bugfix update to xbindkeys-1.8.6 CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/13 01:36:21 Modified files: sys/dev/pci : pcidevs Log message: Add some more 9 series ids, correct some existing ones and add 9 series LP/Wildcat Point-LP entries. ok millert@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/13 01:36:58 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/13 01:44:20 Modified files: www/gtkhtml4 : Makefile distinfo Log message: update to gtkhtml4-4.8.4 CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/13 01:45:37 Modified files: sys/dev/pci : ichiic.c azalia.c pucdata.c pciide.c Log message: match on Intel 9 series and 9 series LP PCH, and add 8 series KT to puc ok millert@ CVSROOT: /cvs Module name: src Changes by: chrisz@cvs.openbsd.org 2014/08/13 02:08:55 Modified files: usr.sbin/httpd : httpd.c Log message: fix early loop termination in httpd path_info() without this fix httpd always put at least the first path component in SCRIPT_NAME even when it did not exist. Now for completely non-existant paths everything goes into PATH_INFO. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/08/13 02:42:46 Modified files: usr.bin/sndiod : dsp.c sndiod.1 Log message: Spelling - "alignment" not "alignement". ok ratchov CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/08/13 02:43:36 Modified files: infrastructure/db: user.list Log message: add a user for www/puppetboard OK jasper@ CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/08/13 02:44:47 Modified files: www/puppetboard: Makefile www/puppetboard/pkg: PLIST puppetboard.rc Log message: puppetboard doesn't need to run as root, so add a user for it. feedback and OK jasper@ (MAINTAINER) CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/08/13 03:46:23 Modified files: sys/net : if_pflow.h if_pflow.c Log message: Bring IPFIX sequence numbers in line with the RFC; original diff from benno@. ok benno@, florian@ CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/08/13 05:13:53 Modified files: . : plus.html Log message: plus.html july 28 to august 3rd. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/08/13 05:22:39 Modified files: security/opensc: Makefile security/opensc/pkg: PFRAG.shared PLIST Log message: Fix: onepin-opensc-pkcs11.so belongs to PFRAG.shared CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/13 06:03:40 Modified files: sys/net : if_pppoe.c Log message: Correctly set the rtable ID of the packet header when sending Active Discovery Terminate packets. ok mikeb@, henning@, phessler@ CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2014/08/13 09:13:33 Modified files: devel/cppcheck : Makefile distinfo devel/cppcheck/pkg: PLIST Log message: update to cppcheck 1.66 ok gsoares@ (maintainer) CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 09:19:24 Modified files: usr.bin/mandoc : html.c html.h mdoc_html.c Log message: Use for .Em and .Bf -emphasis. The vast majority of .Em in real-world manuals is stress emphasis, for which is the correct markup. Admittedly, there are some instances of .Em usage for alternate quality, for which would be a better match. Most of these are technical terms that neither allow semantic markup nor are keywords - for the latter, .Sy would be preferable. A typical example is that the shell breaks input into .Em words . Alternate voice or mood, which would also require , is almost absent from manuals. We cannot satisfy both stress emphasis and alternate quality, so pick the one that fits more often and looks less wrong when off. Patch from Guy Harris . ok bentley@ joerg@NetBSD CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/13 10:04:28 Modified files: usr.sbin/httpd : httpd.c httpd.h server_fcgi.c Log message: Provide a failsafe version of the path_info() function that doesn't need a temporary path variable. Based on an initial diff from chrisz@. "Commit any failsafe version and I'm ok with it" chrisz@ CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/13 11:02:21 Modified files: faq : faq9.html current.html Log message: move to cvsweb.openbsd.org CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/13 11:37:31 Modified files: . : 52.html alpha.html amd64.html goals.html i386.html plus32.html plus33.html plus34.html plus35.html policy.html sparc.html sparc64.html Log message: move to cvsweb.openbsd.org CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/13 11:38:53 Modified files: . : index.html Log message: using cvsweb.openbsd.org now for cvsweb CVSROOT: /cvs Module name: src Changes by: tobias@cvs.openbsd.org 2014/08/13 11:41:58 Modified files: usr.sbin/tftpd : tftpd.c Log message: Always call freeaddrinfo after getaddrinfo. ok dlg@ CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/13 12:00:25 Modified files: libressl : index.html Log message: move to cvsweb.openbsd.org CVSROOT: /cvs Module name: src Changes by: chrisz@cvs.openbsd.org 2014/08/13 12:00:54 Modified files: usr.sbin/httpd : server_fcgi.c Log message: For a non-existent root we don't want the root prefix to show up in PATH_INFO. Therefore put a lower bound of strlen(root) on scriptlen. This makes perfect sense for virtual FastCGI scripts which run chrooted in another directory from httpd. ok reyk@ CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/13 12:05:19 Modified files: openbgpd : index.html opencvs : index.html openntpd : index.html opensmtpd : index.html Log message: move to cvsweb.openbsd.org CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/13 12:15:49 Modified files: faq/ports : ports.html specialtopics.html Log message: move to cvsweb.openbsd.org CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/13 12:20:33 Modified files: openssh : features.html history.html index.html manual.html specs.html Log message: move to cvsweb.openbsd.org CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/13 15:02:16 Modified files: app/ssh-askpass: Makefile app/xlockmore : Makefile.bsd-wrapper app/xsystrace : Makefile app/xterm : Makefile lib/libXt : Makefile.bsd-wrapper Log message: Install resource files in /usr/X11R6/share/X11/app-defaults /etc/X11/app-defaults stays 1st in the libXt search path so, people and ports can put customized versions there if needed. If you didn't customize the versions in /etc/X11/app-defaults, they should be removed to avoid future issues when one file changes. discussed at g2k14 and ok ajacoutot@ CVSROOT: /cvs Module name: www Changes by: matthieu@cvs.openbsd.org 2014/08/13 15:17:10 Modified files: faq : current.html Log message: moved X resource files... I've added markers to ease rotation of the file once it's released. CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/08/13 15:19:56 Modified files: etc/mtree : BSD.x11.dist Log message: Add /usr/X11R6/share/X11/app-defaults CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 16:09:28 Modified files: share/man/man7 : roff.7 usr.bin/mandoc : html.c term_ascii.c term_ps.c Log message: Begin cleanup of scaling units. Note that we use 240u := 1i for all devices, even -Tps and -Tpdf. Big fix of -Tascii rendering of f, m, and u. Small fix of -Tascii rendering of c. Big fix of -Thtml rendering of u. Big fix of -Tps rendering of m, p, and u. Clarify -Tps rendering of c. Correct documentation of scaling units, in particular with respect to u. This for example improves rendering of the OpenGL manuals. Joint work with kristaps@. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 18:07:55 Modified files: regress/usr.bin/mandoc: Makefile.inc Makefile.sub Log message: Add a simple target to validate the syntax of -Thtml output. Not hooked to the build yet because there are still too many bugs. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 18:29:12 Modified files: usr.bin/mandoc : html.c html.h mdoc_html.c Log message: Revert previous, as requested by kristaps@. The .Bf block can contain subblocks, so it has to render as an element that can contain flow content. But cannot contain flow content, only phrasing content. Rendering .Em and .Bf differently would by unfortunate, and closing out .Bf before subblocks and re-opening it afterwards would merely complicate both the C code of the program and the generated HTML code. Besides, converting .Em to semantic HTML markup would require some content to be put into and some into , but we cannot automatically distinguish which is which, so strictly speaking, we can't use semantic HTML here but have to fall back to physical markup. Wonders of HTML... CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/13 19:05:03 Modified files: emulators/qemu : Makefile distinfo emulators/qemu/patches: patch-configure emulators/qemu/pkg: PLIST Added files: emulators/qemu/patches: patch-tcg_ppc_tcg-target_c Removed files: emulators/qemu/patches: patch-util_cache-utils_c Log message: Update to QEMU 2.1.0 ok bcallah@ rpe@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/13 19:08:09 Modified files: devel/llvm : Makefile devel/llvm/patches: patch-lib_CodeGen_SelectionDAG_LegalizeVectorTypes_cpp Added files: devel/llvm/patches: patch-lib_CodeGen_SelectionDAG_LegalizeTypes_h Log message: r211435 Legalizer: Add support for splitting insert_subvectors. We handle this by spilling the whole thing to the stack and doing the insertion as a store. PR19492. This happens in real code because the vectorizer creates v2i128 when AVX is enabled. ok matthew@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:33:56 src/regress/usr.bin/mandoc/man/B Update of /cvs/src/regress/usr.bin/mandoc/man/B In directory cvs.openbsd.org:/tmp/cvs-serv30582/man/B Log Message: Directory /cvs/src/regress/usr.bin/mandoc/man/B added to the repository CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:33:57 src/regress/usr.bin/mandoc/man/SH Update of /cvs/src/regress/usr.bin/mandoc/man/SH In directory cvs.openbsd.org:/tmp/cvs-serv30582/man/SH Log Message: Directory /cvs/src/regress/usr.bin/mandoc/man/SH added to the repository CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:33:58 src/regress/usr.bin/mandoc/mdoc/Dd Update of /cvs/src/regress/usr.bin/mandoc/mdoc/Dd In directory cvs.openbsd.org:/tmp/cvs-serv30582/mdoc/Dd Log Message: Directory /cvs/src/regress/usr.bin/mandoc/mdoc/Dd added to the repository CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:33:59 src/regress/usr.bin/mandoc/mdoc/Ex Update of /cvs/src/regress/usr.bin/mandoc/mdoc/Ex In directory cvs.openbsd.org:/tmp/cvs-serv30582/mdoc/Ex Log Message: Directory /cvs/src/regress/usr.bin/mandoc/mdoc/Ex added to the repository CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:34:00 src/regress/usr.bin/mandoc/mdoc/Os Update of /cvs/src/regress/usr.bin/mandoc/mdoc/Os In directory cvs.openbsd.org:/tmp/cvs-serv30582/mdoc/Os Log Message: Directory /cvs/src/regress/usr.bin/mandoc/mdoc/Os added to the repository CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:34:01 src/regress/usr.bin/mandoc/mdoc/Rv Update of /cvs/src/regress/usr.bin/mandoc/mdoc/Rv In directory cvs.openbsd.org:/tmp/cvs-serv30582/mdoc/Rv Log Message: Directory /cvs/src/regress/usr.bin/mandoc/mdoc/Rv added to the repository CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:45:03 src/regress/usr.bin/mandoc/roff/scale Update of /cvs/src/regress/usr.bin/mandoc/roff/scale In directory cvs.openbsd.org:/tmp/cvs-serv14905/roff/scale Log Message: Directory /cvs/src/regress/usr.bin/mandoc/roff/scale added to the repository CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:58:51 Modified files: regress/usr.bin/mandoc/man/TS: Makefile regress/usr.bin/mandoc/roff/esc: Makefile regress/usr.bin/mandoc/tbl: Makefile Log message: add missing NOPTS arguments CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 20:00:53 Modified files: regress/usr.bin/mandoc/man: Makefile regress/usr.bin/mandoc/man/TH: Makefile regress/usr.bin/mandoc/mdoc: Makefile regress/usr.bin/mandoc/mdoc/An: Makefile regress/usr.bin/mandoc/mdoc/Bd: Makefile regress/usr.bin/mandoc/mdoc/Bl: Makefile regress/usr.bin/mandoc/mdoc/Dt: Makefile regress/usr.bin/mandoc/mdoc/Sh: Makefile regress/usr.bin/mandoc/roff: Makefile regress/usr.bin/mandoc/roff/it: Makefile Added files: regress/usr.bin/mandoc/man/B: Makefile args.in args.out_ascii args.out_lint regress/usr.bin/mandoc/man/SH: Makefile broken.in broken.out_ascii broken.out_lint broken_eline.in broken_eline.out_ascii broken_eline.out_lint noarg.in noarg.out_ascii noarg.out_lint regress/usr.bin/mandoc/man/TH: noarg.out_lint onearg.out_lint regress/usr.bin/mandoc/mdoc/An: break.out_lint regress/usr.bin/mandoc/mdoc/Bd: centered.in centered.out_ascii regress/usr.bin/mandoc/mdoc/Bl: bareIt.in bareIt.out_ascii bareIt.out_lint column.out_lint regress/usr.bin/mandoc/mdoc/Dd: Makefile badarg.in badarg.out_ascii badarg.out_lint dupe.in dupe.out_ascii dupe.out_lint late.in late.out_ascii late.out_lint manarg.in manarg.out_ascii manarg.out_lint noarg.in noarg.out_lint order.in order.out_ascii order.out_lint regress/usr.bin/mandoc/mdoc/Dt: late.in late.out_ascii late.out_lint missing.in missing.out_ascii missing.out_lint noarg.in noarg.out_ascii noarg.out_lint nosec.in nosec.out_ascii nosec.out_lint regress/usr.bin/mandoc/mdoc/Ex: Makefile args.in args.out_ascii noname.in noname.out_ascii noname.out_lint nostd.in nostd.out_ascii nostd.out_lint regress/usr.bin/mandoc/mdoc/Os: Makefile dupe.in dupe.out_ascii dupe.out_lint late.in late.out_ascii late.out_lint missing.in missing.out_ascii missing.out_lint regress/usr.bin/mandoc/mdoc/Rv: Makefile args.in args.out_ascii noname.in noname.out_ascii noname.out_lint nostd.in nostd.out_ascii nostd.out_lint regress/usr.bin/mandoc/mdoc/Sh: subbefore.in subbefore.out_ascii subbefore.out_lint regress/usr.bin/mandoc/roff/it: badarg.in badarg.out_ascii badarg.out_lint regress/usr.bin/mandoc/roff/scale: Makefile horiz.in horiz.out_ascii Removed files: regress/usr.bin/mandoc/mdoc/Dt: baddate.in baddate.out_ascii baddate.out_lint lateos.in lateos.out_ascii lateos.out_lint nodate.in nodate.out_lint noos.in noos.out_lint Log message: new regression tests collected during recent work CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 20:49:23 Modified files: usr.bin/mandoc : Makefile Log message: mandoc 1.13.1 has been released CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/13 20:54:14 Modified files: regress/usr.bin/mandoc/roff/it: badarg.in Log message: fix date that got changed by Mdocdate and no longer matches the desired output CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/13 21:57:44 Modified files: sys/dev/pci/drm: drm.h i915_drm.h Log message: add some definitions from libdrm 2.4.56 CVSROOT: /cvs Module name: xenocara Changes by: jsg@cvs.openbsd.org 2014/08/13 22:00:28 Modified files: lib/libdrm : Makefile.inc xf86drm.c xf86drmMode.h lib/libdrm/radeon: radeon_surface.c Log message: update to libdrm 2.4.56 CVSROOT: /cvs Module name: xenocara Changes by: jsg@cvs.openbsd.org 2014/08/13 22:02:47 Modified files: . : 3RDPARTY Log message: update CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/14 00:28:32 Modified files: x11/gnome/rygel: Makefile distinfo x11/gnome/rygel/pkg: PLIST Removed files: x11/gnome/rygel/patches: patch-configure Log message: update to 0.22.3 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 00:38:02 Modified files: textproc/py-enchant: Makefile distinfo textproc/py-enchant/pkg: PLIST Removed files: textproc/py-enchant/patches: patch-setup_py Log message: Update to py-enchant-1.6.6. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 00:38:51 Modified files: security/libpwquality: Makefile distinfo security/libpwquality/pkg: PLIST Removed files: security/libpwquality/patches: patch-python_Makefile_in Log message: Update to libpwquality-1.2.4. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 00:40:00 Modified files: security/libpwquality: Makefile Log message: Tweaks, no pkg change. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/14 00:42:16 Modified files: devel/libgit2/libgit2-glib: Makefile distinfo devel/libgit2/libgit2-glib/pkg: PLIST Added files: devel/libgit2/libgit2-glib/patches: patch-libgit2-glib_ggit-blob-output-stream_c Log message: - update to libgit2-glib-0.0.20 - whack the OutputStream statemachine with mutexes and conditional variables (from guenther@, thanks!) CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/14 00:51:33 Modified files: graphics/clutter/core: Makefile distinfo graphics/clutter/core/pkg: PLIST Log message: update to clutter-1.18.4 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 00:52:06 Modified files: print/cups-filters: Makefile distinfo print/cups-filters/patches: patch-filter_foomatic-rip_foomaticrip_c print/cups-filters/pkg: PLIST Removed files: print/cups-filters/patches: patch-filter_foomatic-rip_util_h Log message: Update to cups-filters-1.0.55. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 00:52:59 Modified files: sysutils/bacula: Makefile distinfo sysutils/bacula/patches: patch-Makefile_in patch-src_dird_bacula-dir_conf_in patch-src_stored_bacula-sd_conf_in sysutils/bacula/pkg: PLIST-main PLIST-server Removed files: sysutils/bacula/patches: patch-src_cats_create_postgresql_database_in Log message: Update to bacula-client-7.0.5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 00:54:24 Modified files: sysutils/nut : Makefile sysutils/nut/pkg: PLIST-main README-main Removed files: sysutils/nut/patches: patch-conf_nut_conf_sample Log message: Drop configuration files only used by System V init scripts and add a mention in the README. input/ok sthen@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 00:55:42 Modified files: www/owncloud : Makefile distinfo www/owncloud/patches: patch-apps_updater_appinfo_info_xml patch-lib_private_util_php www/owncloud/pkg: PLIST README Added files: www/owncloud/patches: patch-core_templates_installation_php Log message: Update to owncloud-7.0.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 00:56:55 Modified files: audio/pulseaudio: Makefile Added files: audio/pulseaudio/patches: patch-src_modules_rtp_rtp_c Log message: SECURITY fix for CVE-2014-3970 pulseaudio: denial of service in module-rtp-recv CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/14 01:00:25 Log message: import mFi-2.0.24 This package contains controller software for Ubiquiti mFi automation controllers. ok sthen@ Status: Vendor Tag: jasper Release Tags: jasper_20141408 N ports/net/mfi/Makefile N ports/net/mfi/distinfo N ports/net/mfi/pkg/DESCR N ports/net/mfi/pkg/PLIST N ports/net/mfi/pkg/mfi.rc No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/14 01:01:21 Modified files: net : Makefile Log message: +mfi CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 01:04:22 Modified files: graphics/py-Pillow: Makefile Added files: graphics/py-Pillow/patches: patch-Sane_setup_py graphics/py-Pillow/pkg: DESCR-main DESCR-sane PLIST-main PLIST-sane Removed files: graphics/py-Pillow/pkg: DESCR PLIST Log message: Build the python sane bindings. Subpackage this port: py-Pillow py-sane ok sthen@ rpointel@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 01:06:00 Modified files: games/fretsonfire: Makefile games/mnemosyne: Makefile geo/gmapcatcher: Makefile geo/tilecache : Makefile graphics/asymptote: Makefile graphics/comix : Makefile graphics/py-graphics: Makefile graphics/py-matplotlib: Makefile graphics/py-pyx: Makefile misc/gramps : Makefile multimedia/moovida/core: Makefile multimedia/moovida/plugins-ugly: Makefile multimedia/moovida/plugins-good: Makefile multimedia/moovida/plugins-bad: Makefile print/hplip : Makefile print/py-reportlab/reportlab: Makefile print/scribus : Makefile productivity/impressive: Makefile textproc/calibre: Makefile Log message: Bump after py-Pillow sub-packaging. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/14 01:15:22 Modified files: sysutils/ruby-libvirt: Makefile distinfo sysutils/ruby-libvirt/pkg: PLIST Log message: update to ruby-libvirt-0.5.2 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/14 01:15:52 Modified files: net/telepathy/folks: Makefile distinfo Log message: update to folks-0.9.8 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/14 01:24:29 Modified files: converters/ruby-json: Makefile distinfo converters/ruby-json/pkg: PLIST Log message: update to json-1.8.1 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 01:47:14 Modified files: print/cups-filters: Makefile distinfo Log message: Update to cups-filters-1.0.57. CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/14 01:50:24 Modified files: devel/gdb : Makefile distinfo devel/gdb/patches: patch-bfd_coff-rs6000_c patch-bfd_elf_c patch-bfd_peXXigen_c patch-gdb_data-directory_Makefile_in patch-gdb_doc_Makefile_in patch-libiberty_Makefile_in devel/gdb/pkg : PLIST Removed files: devel/gdb/patches: patch-gdb_bsd-kvm_c Log message: Update to GDB 7.8. CVSROOT: /cvs Module name: src Changes by: chrisz@cvs.openbsd.org 2014/08/14 01:50:35 Modified files: usr.sbin/httpd : server_file.c Log message: Remove obsolete struct stat parameters. ok reyk@ CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/08/14 01:55:17 Modified files: sys/net : pf_lb.c Log message: fix logging strings (correct function name via __func__ + a typo) ok florian@ henning@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/14 02:08:00 Modified files: usr.sbin/npppd/npppd: npppd_subr.c Log message: Do not set RTF_MASK, it is not used anymore. ok yasuoka@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/14 02:10:30 Modified files: usr.bin/systat : pool.c systat.1 Log message: Show only active pools by default, pressing 'A' shows all of them. ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/14 02:20:27 Modified files: graphics/ffmpeg: Makefile distinfo graphics/ffmpeg/patches: patch-configure patch-version_sh graphics/ffmpeg/pkg: PLIST x11/mplayer : Makefile Removed files: graphics/ffmpeg/patches: patch-doc_examples_transcode_aac_c patch-libavutil_lzo_c Log message: Update to FFmpeg 20140810 snapshot. From master branch. ok ajacoutot@ zhuk@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/14 02:22:38 Modified files: sys/netinet : ip_mroute.c ip_mroute.h raw_ip.c Log message: Kill MRT_{ADD,DEL}_BW_UPCALL interfaces and the bandwidth monitoring code that comes with them. ok mikeb@, henning@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 02:26:10 Modified files: devel/libgit2/libgit2-glib: Makefile devel/libgit2/libgit2-glib/pkg: PLIST Log message: Add vala bindings. ok jasper@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/14 03:00:06 Modified files: net/icinga/core/patches: patch-configure Added files: net/icinga/core/patches: patch-base_logging_c Log message: normalize patches, now that trees are unlocked CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/14 03:00:21 Removed files: net/wireshark/patches: patch-Makefile_in Log message: normalize patches, now that trees are unlocked CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/14 03:01:47 Modified files: sys/kern : init_main.c sys/net : route.c sys/netinet : ip_mroute.c sys/netinet6 : ip6_mroute.c Log message: No need for raw_cb.h CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/14 03:12:26 Modified files: usr.sbin/httpd : http.h Log message: Sync with RFC 7230-7235 phrases and IANA registered status codes. ok reyk@ CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/14 03:52:03 Modified files: sys/dev/pci : if_oce.c Log message: Implement rxrinfo ioctl for cluster usage statistics CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/08/14 04:16:08 Modified files: www/puppet-dashboard: Makefile www/puppet-dashboard/pkg: README Added files: www/puppet-dashboard/patches: patch-lib_tasks_import_reports_rake Log message: make the import of old reports work fix HOMEPAGE add hidden RDEP to ruby-rake take MAINTAINER feedback and OK jasper@ (former MAINTAINER) CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/14 04:30:52 Modified files: usr.sbin/relayd: http.h Log message: Sync with httpd, including the following change from doug@: "Sync with RFC 7230-7235 phrases and IANA registered status codes. ok reyk@" CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/14 05:38:14 Modified files: sys/net : if.c Log message: Compare number of allocated clusters with a low watermark, not a magic number 4 since sometimes we can't fit a single packet (jumbo frame) into 4 clusters. OK dlg CVSROOT: /cvs Module name: src Changes by: bcallah@cvs.openbsd.org 2014/08/14 06:22:58 Modified files: usr.bin/mg : keymap.c Log message: Add bounce matching for [] and {} like mg already does with () and like Emacs does. ok florian@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/14 06:34:05 Modified files: usr.bin/netstat: mroute.c Log message: Kill bandwidth monitoring meters. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/14 06:44:44 Modified files: usr.sbin/tcpdump: pfctl_osfp.c print-802_11.c print-atalk.c print-atm.c print-domain.c print-dvmrp.c print-enc.c print-ether.c print-etherip.c print-fddi.c print-frag6.c print-gre.c print-gtp.c print-iapp.c print-icmp.c print-icmp6.c print-igrp.c print-ip.c print-ip6.c print-ipsec.c print-ipx.c print-krb.c print-lldp.c print-mobile.c print-netbios.c print-nfs.c print-null.c print-ospf.c print-ospf6.c print-pflog.c print-pfsync.c print-pim.c print-ppp.c print-raw.c print-rip.c print-ripng.c print-rt6.c print-skip.c print-sl.c print-slow.c print-stp.c print-sunrpc.c print-tcp.c print-udp.c Log message: No use for nor . CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/14 06:55:50 Modified files: usr.bin/systat : netstat.c pf.c usr.bin/netstat: inet.c inet6.c net80211.c Log message: No need for nor . CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 06:57:09 Modified files: audio/pulseaudio: Makefile Added files: audio/pulseaudio/patches: patch-src_pulse_util_c Log message: Implement pa_get_binary_name(). ok robert@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/08/14 08:36:49 Log message: perl client lib for clamav's clamd; help & ok sthen Status: Vendor Tag: henning Release Tags: henning_2014-08-14 N ports/security/p5-File-Scan-ClamAV/Makefile N ports/security/p5-File-Scan-ClamAV/distinfo N ports/security/p5-File-Scan-ClamAV/pkg/DESCR N ports/security/p5-File-Scan-ClamAV/pkg/PLIST N ports/security/p5-File-Scan-ClamAV/patches/patch-t_01ping_t N ports/security/p5-File-Scan-ClamAV/patches/patch-t_02reload_t N ports/security/p5-File-Scan-ClamAV/patches/patch-t_03quit_t N ports/security/p5-File-Scan-ClamAV/patches/patch-t_04scan_t N ports/security/p5-File-Scan-ClamAV/patches/patch-t_05streamscan_t No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/08/14 08:37:37 Modified files: security : Makefile Log message: SUBDIR += p5-File-Scan-ClamAV CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/14 09:38:34 Modified files: net/nagios/nsca: Makefile Log message: allow either nagios or icinga as a dependency of nsca, like already done for nsca-ng. noticed by henning@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/14 09:49:38 Modified files: net/monitoring-plugins: Makefile net/monitoring-plugins/pkg: PLIST-dbi PLIST-fping PLIST-game PLIST-ldap PLIST-mysql PLIST-pgsql PLIST-samba PLIST-snmp Log message: add some missing @conflicts CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/08/14 11:04:12 Modified files: databases/postgresql: Makefile lang/ruby : Makefile.inc Added files: infrastructure/bin: install-wrapper Log message: Add the remaining pieces to allow fake as non-root. Not enabled as a general default yet. Committing for espie@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/14 11:21:38 Modified files: sys/uvm : uvm_map.c Log message: Bring back 1.173 (reverting 1.174) - mips64 systems are still unhappy when the hint returned is over VM_MAXUSER_ADDRESS, apparently; better be safe for now while this is investigated further. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/14 11:49:50 Modified files: sys/arch/vax/if: sgec.c Log message: Unused variable, and more fixes in the attach failure path. CVSROOT: /cvs Module name: src Changes by: tobias@cvs.openbsd.org 2014/08/14 11:55:28 Modified files: lib/libc/sys : Makefile.inc lib/libcrypto : x509v3.cnf lib/libssl/src/crypto/dso: dso.h sys/arch/aviion/stand/vdmtool: vdmtool.c sys/arch/mips64/include: cpu.h Log message: fixed overrid(d)en typo millert@ and jmc@ agree that "overriden" is wrong CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/14 13:08:21 Modified files: usr.sbin/bgpctl: bgpctl.8 Log message: remove two duplicate command entries; reported by Denis Fondras CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/14 13:43:45 Modified files: gnu/usr.bin/binutils/bfd: elfxx-mips.c Log message: Backport from binutils-2.17: 2005-08-17 Alan Modra * elfxx-mips.c (_bfd_mips_elf_hide_symbol): Cope with being called without any got section. ok miod@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 13:54:10 Modified files: infrastructure/templates: rc.template Log message: Sync with reality. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/14 13:55:18 Modified files: geo/openbsd-developers: Makefile geo/openbsd-developers/files: OpenBSD Log message: I graduated from New Jersey to New York! CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 13:57:49 Log message: Import py-secretstorage-2.1.1. This module provides a way for securely storing passwords and other secrets. It uses D-Bus Secret Service API that is supported by GNOME Keyring and KSecretsService. ok jasper@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140814 N ports/security/py-secretstorage/distinfo N ports/security/py-secretstorage/Makefile N ports/security/py-secretstorage/pkg/DESCR N ports/security/py-secretstorage/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 13:59:01 Log message: Import py-keyring-3.8. The Python keyring lib provides a easy way to access the system keyring service from python. It can be used in any application that needs safe password storage. <...> ok jasper@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140814 N ports/security/py-keyring/distinfo N ports/security/py-keyring/Makefile N ports/security/py-keyring/pkg/DESCR N ports/security/py-keyring/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 14:00:22 Modified files: security : Makefile Log message: +py-keyring +py-secretstorage CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 14:02:28 Log message: Import ocrfeeder-0.8. OCRFeeder is a complete Optical Character Recognition and Document Analysis and Recognition program. ok jasper@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140814 N ports/x11/gnome/ocrfeeder/Makefile N ports/x11/gnome/ocrfeeder/distinfo N ports/x11/gnome/ocrfeeder/pkg/DESCR N ports/x11/gnome/ocrfeeder/pkg/PLIST N ports/x11/gnome/ocrfeeder/patches/patch-src_ocrfeeder_feeder_documentGeneration_py N ports/x11/gnome/ocrfeeder/patches/patch-configure N ports/x11/gnome/ocrfeeder/patches/patch-src_ocrfeeder_util_constants_py_in N ports/x11/gnome/ocrfeeder/patches/patch-src_ocrfeeder_studio_studioBuilder_py No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 14:03:00 Modified files: x11/gnome : Makefile Log message: +ocrfeeder CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 14:03:37 Modified files: x11 : Makefile Log message: Re-enable nagstamon; dependant ports are in tree now. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 14:05:39 Log message: Import gstreamer1mm-1.0.10. gstreamermm provides C++ bindings for the GStreamer streaming multimedia library. With gstreamermm it is possible to develop applications that work with multimedia in C++. ok jasper@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140814 N ports/multimedia/gstreamer1/mm/Makefile N ports/multimedia/gstreamer1/mm/distinfo N ports/multimedia/gstreamer1/mm/pkg/DESCR N ports/multimedia/gstreamer1/mm/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/14 14:06:05 Modified files: multimedia/gstreamer1: Makefile Log message: +mm CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/14 14:06:41 Modified files: share/man/man7 : roff.7 Log message: double word fix-o; CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/08/14 14:29:08 Modified files: sys/dev/usb : usbdevs Log message: Add USB hubs found on Intel Z97 chipset boards (one attached to each EHCI root hub). OK deraadt@ jsg@ CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/08/14 14:29:31 Modified files: sys/dev/usb : usbdevs.h usbdevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/14 14:55:41 Modified files: share/man/man7 : mdoc.7 Log message: Clarify that .Em and .Sy are physical, not semantic markup, explain appropriate usage, and provide some examples. ok jmc@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/14 15:14:09 Modified files: emulators/qemu : Makefile Log message: commit from the right dir so the actual 2.1.0 Makefile goes in. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/14 16:32:28 Modified files: usr.bin/mandoc : term_ascii.c Log message: Some compilers apparently worry that abort() might return and then throw a "may be used uninitialized" warning, so sprinkle some /* NOTREACHED */. No functional change. Noticed by Thomas Klausner . CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/14 16:34:36 ports/editors/py-qscintilla/patches Update of /cvs/ports/editors/py-qscintilla/patches In directory cvs.openbsd.org:/tmp/cvs-serv376/patches Log Message: Directory /cvs/ports/editors/py-qscintilla/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/14 16:34:54 Modified files: emulators/qemu : distinfo Log message: and this too. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/14 16:35:00 Modified files: editors/py-qscintilla: Makefile Added files: editors/py-qscintilla/patches: patch-Python_configure_py Log message: py-qscintilla could still run qmake from Qt3 on configure. Fix this by using the detected qmake where appropriate. Noticed by naddy@ a few weeks ago, committing now that tree is fully unlocked. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/14 17:05:57 Modified files: productivity/akonadi: Makefile productivity/akonadi/patches: patch-CMakeLists_txt Added files: productivity/akonadi/patches: patch-config-akonadi_h_cmake patch-shared_akcrash_cpp Log message: Use FindBacktrace.cmake here. Fixes floating dependency spotted by landry@. Patch went upstream already. CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/08/14 18:50:22 Modified files: mail/bmf : Makefile mail/bmf/patches: patch-Makefile_in mail/bmf/pkg : PLIST Log message: Disable explicit root check. Regen PLIST while here and bump for safety. CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/08/14 18:53:51 Modified files: security/reop : Makefile distinfo Log message: Update reop to 1.1.1 CVSROOT: /cvs Module name: src Changes by: yasuoka@cvs.openbsd.org 2014/08/14 20:27:03 Modified files: sys/dev/ic : mfi.c mfireg.h mfivar.h Log message: Create a function which loads sgd in the mfi_iop_ops struct so that skinny adapters can use "IEEE sgl". tested dlg yasuoka ok dlg jsg CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/14 21:51:40 Modified files: lib/libc/db/hash: hash.c lib/libkvm : kvm.c lib/libsndio : mio_rmidi.c sio_sun.c lib/libutil : passwd.c usr.bin/mail : names.c usr.bin/usbhidaction: usbhidaction.c usr.sbin/apmd : apmd.c usr.sbin/cron : misc.c Log message: Use O_CLOEXEC wherever we open a file and then call fcntl(F_SETFD, FD_CLOEXEC) on it, simplifying error checking, reducing system calls, and improving thread-safety for libraries. ok miod@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/14 22:14:36 Modified files: lib/libc/stdlib: Makefile.inc insque.c remque.c Removed files: lib/libc/arch/vax/stdlib: insque.S remque.S Log message: XPG requires insque() and remque() to work with linear lists and not just circular lists. Amazingly, they managed to extend the requirements to no longer match the behavior of the VAX instructions they were modeled after, so the trivial VAX ASM versions have to go. Nice job breaking it, X/Open! Based on a diff from enh (at) google.com ok miod@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/15 00:05:18 Modified files: usr.bin/calendar/calendars: calendar.holiday Log message: admission of hawaii happened in 1959, not 1984; from the freebsd bugs database, bug 192651: Reported: 2014-08-14 13:17 UTC by Richard CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/15 00:44:30 Modified files: share/man/man7 : hier.7 Log message: shorten share/doc/{html,mg} to share/doc, since nothing currently gets installed in html (i think!); CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2014/08/15 00:53:42 Modified files: . : donations.html index.html Log message: Some people asked specifically for paypal direct to me & project, so here we go. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 01:19:38 Modified files: devel/ruby-open4: Makefile distinfo devel/ruby-open4/pkg: PLIST Log message: update to open4-1.3.4 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 01:21:53 Log message: import rake-remote_task-2.2.2 Vlad the Deployer's sexy brainchild is rake-remote_task, extending Rake with remote task goodness. ok jeremy@ Status: Vendor Tag: jasper Release Tags: jasper_20141508 N ports/devel/ruby-rake-remote_task/distinfo N ports/devel/ruby-rake-remote_task/Makefile N ports/devel/ruby-rake-remote_task/pkg/PLIST N ports/devel/ruby-rake-remote_task/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 01:24:07 Modified files: devel : Makefile Log message: +ruby-rake-remote_task CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 01:24:10 Modified files: sysutils/ruby-vlad: Makefile distinfo sysutils/ruby-vlad/pkg: PLIST Removed files: sysutils/ruby-vlad/patches: patch-_metadata Log message: update to vlad-2.6.3 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/15 01:56:42 Modified files: security/heimdal: heimdal.port.mk Log message: Fix MODHEIMDAL_LIB_DEPENDS. CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/15 02:19:30 Modified files: lang/gcc/4.8 : Makefile Added files: lang/gcc/4.8/patches: patch-libgfortran_ChangeLog patch-libgfortran_generated_all_l16_c patch-libgfortran_generated_all_l1_c patch-libgfortran_generated_all_l2_c patch-libgfortran_generated_all_l4_c patch-libgfortran_generated_all_l8_c patch-libgfortran_generated_any_l16_c patch-libgfortran_generated_any_l1_c patch-libgfortran_generated_any_l2_c patch-libgfortran_generated_any_l4_c patch-libgfortran_generated_any_l8_c patch-libgfortran_generated_bessel_r10_c patch-libgfortran_generated_bessel_r16_c patch-libgfortran_generated_bessel_r4_c patch-libgfortran_generated_bessel_r8_c patch-libgfortran_generated_count_16_l_c patch-libgfortran_generated_count_1_l_c patch-libgfortran_generated_count_2_l_c patch-libgfortran_generated_count_4_l_c patch-libgfortran_generated_count_8_l_c patch-libgfortran_generated_cshift1_16_c patch-libgfortran_generated_cshift1_4_c patch-libgfortran_generated_cshift1_8_c patch-libgfortran_generated_eoshift1_16_c patch-libgfortran_generated_eoshift1_4_c patch-libgfortran_generated_eoshift1_8_c patch-libgfortran_generated_eoshift3_16_c patch-libgfortran_generated_eoshift3_4_c patch-libgfortran_generated_eoshift3_8_c patch-libgfortran_generated_iall_i16_c patch-libgfortran_generated_iall_i1_c patch-libgfortran_generated_iall_i2_c patch-libgfortran_generated_iall_i4_c patch-libgfortran_generated_iall_i8_c patch-libgfortran_generated_iany_i16_c patch-libgfortran_generated_iany_i1_c patch-libgfortran_generated_iany_i2_c patch-libgfortran_generated_iany_i4_c patch-libgfortran_generated_iany_i8_c patch-libgfortran_generated_in_pack_c10_c patch-libgfortran_generated_in_pack_c16_c patch-libgfortran_generated_in_pack_c4_c patch-libgfortran_generated_in_pack_c8_c patch-libgfortran_generated_in_pack_i16_c patch-libgfortran_generated_in_pack_i1_c patch-libgfortran_generated_in_pack_i2_c patch-libgfortran_generated_in_pack_i4_c patch-libgfortran_generated_in_pack_i8_c patch-libgfortran_generated_in_pack_r10_c patch-libgfortran_generated_in_pack_r16_c patch-libgfortran_generated_in_pack_r4_c patch-libgfortran_generated_in_pack_r8_c patch-libgfortran_generated_iparity_i16_c patch-libgfortran_generated_iparity_i1_c patch-libgfortran_generated_iparity_i2_c patch-libgfortran_generated_iparity_i4_c patch-libgfortran_generated_iparity_i8_c patch-libgfortran_generated_matmul_c10_c patch-libgfortran_generated_matmul_c16_c patch-libgfortran_generated_matmul_c4_c patch-libgfortran_generated_matmul_c8_c patch-libgfortran_generated_matmul_i16_c patch-libgfortran_generated_matmul_i1_c patch-libgfortran_generated_matmul_i2_c patch-libgfortran_generated_matmul_i4_c patch-libgfortran_generated_matmul_i8_c patch-libgfortran_generated_matmul_l16_c patch-libgfortran_generated_matmul_l4_c patch-libgfortran_generated_matmul_l8_c patch-libgfortran_generated_matmul_r10_c patch-libgfortran_generated_matmul_r16_c patch-libgfortran_generated_matmul_r4_c patch-libgfortran_generated_matmul_r8_c patch-libgfortran_generated_maxloc0_16_i16_c patch-libgfortran_generated_maxloc0_16_i1_c patch-libgfortran_generated_maxloc0_16_i2_c patch-libgfortran_generated_maxloc0_16_i4_c patch-libgfortran_generated_maxloc0_16_i8_c patch-libgfortran_generated_maxloc0_16_r10_c patch-libgfortran_generated_maxloc0_16_r16_c patch-libgfortran_generated_maxloc0_16_r4_c patch-libgfortran_generated_maxloc0_16_r8_c patch-libgfortran_generated_maxloc0_4_i16_c patch-libgfortran_generated_maxloc0_4_i1_c patch-libgfortran_generated_maxloc0_4_i2_c patch-libgfortran_generated_maxloc0_4_i4_c patch-libgfortran_generated_maxloc0_4_i8_c patch-libgfortran_generated_maxloc0_4_r10_c patch-libgfortran_generated_maxloc0_4_r16_c patch-libgfortran_generated_maxloc0_4_r4_c patch-libgfortran_generated_maxloc0_4_r8_c patch-libgfortran_generated_maxloc0_8_i16_c patch-libgfortran_generated_maxloc0_8_i1_c patch-libgfortran_generated_maxloc0_8_i2_c patch-libgfortran_generated_maxloc0_8_i4_c patch-libgfortran_generated_maxloc0_8_i8_c patch-libgfortran_generated_maxloc0_8_r10_c patch-libgfortran_generated_maxloc0_8_r16_c patch-libgfortran_generated_maxloc0_8_r4_c patch-libgfortran_generated_maxloc0_8_r8_c patch-libgfortran_generated_maxloc1_16_i16_c patch-libgfortran_generated_maxloc1_16_i1_c patch-libgfortran_generated_maxloc1_16_i2_c patch-libgfortran_generated_maxloc1_16_i4_c patch-libgfortran_generated_maxloc1_16_i8_c patch-libgfortran_generated_maxloc1_16_r10_c patch-libgfortran_generated_maxloc1_16_r16_c patch-libgfortran_generated_maxloc1_16_r4_c patch-libgfortran_generated_maxloc1_16_r8_c patch-libgfortran_generated_maxloc1_4_i16_c patch-libgfortran_generated_maxloc1_4_i1_c patch-libgfortran_generated_maxloc1_4_i2_c patch-libgfortran_generated_maxloc1_4_i4_c patch-libgfortran_generated_maxloc1_4_i8_c patch-libgfortran_generated_maxloc1_4_r10_c patch-libgfortran_generated_maxloc1_4_r16_c patch-libgfortran_generated_maxloc1_4_r4_c patch-libgfortran_generated_maxloc1_4_r8_c patch-libgfortran_generated_maxloc1_8_i16_c patch-libgfortran_generated_maxloc1_8_i1_c patch-libgfortran_generated_maxloc1_8_i2_c patch-libgfortran_generated_maxloc1_8_i4_c patch-libgfortran_generated_maxloc1_8_i8_c patch-libgfortran_generated_maxloc1_8_r10_c patch-libgfortran_generated_maxloc1_8_r16_c patch-libgfortran_generated_maxloc1_8_r4_c patch-libgfortran_generated_maxloc1_8_r8_c patch-libgfortran_generated_maxval_i16_c patch-libgfortran_generated_maxval_i1_c patch-libgfortran_generated_maxval_i2_c patch-libgfortran_generated_maxval_i4_c patch-libgfortran_generated_maxval_i8_c patch-libgfortran_generated_maxval_r10_c patch-libgfortran_generated_maxval_r16_c patch-libgfortran_generated_maxval_r4_c patch-libgfortran_generated_maxval_r8_c patch-libgfortran_generated_minloc0_16_i16_c patch-libgfortran_generated_minloc0_16_i1_c patch-libgfortran_generated_minloc0_16_i2_c patch-libgfortran_generated_minloc0_16_i4_c patch-libgfortran_generated_minloc0_16_i8_c patch-libgfortran_generated_minloc0_16_r10_c patch-libgfortran_generated_minloc0_16_r16_c patch-libgfortran_generated_minloc0_16_r4_c patch-libgfortran_generated_minloc0_16_r8_c patch-libgfortran_generated_minloc0_4_i16_c patch-libgfortran_generated_minloc0_4_i1_c patch-libgfortran_generated_minloc0_4_i2_c patch-libgfortran_generated_minloc0_4_i4_c patch-libgfortran_generated_minloc0_4_i8_c patch-libgfortran_generated_minloc0_4_r10_c patch-libgfortran_generated_minloc0_4_r16_c patch-libgfortran_generated_minloc0_4_r4_c patch-libgfortran_generated_minloc0_4_r8_c patch-libgfortran_generated_minloc0_8_i16_c patch-libgfortran_generated_minloc0_8_i1_c patch-libgfortran_generated_minloc0_8_i2_c patch-libgfortran_generated_minloc0_8_i4_c patch-libgfortran_generated_minloc0_8_i8_c patch-libgfortran_generated_minloc0_8_r10_c patch-libgfortran_generated_minloc0_8_r16_c patch-libgfortran_generated_minloc0_8_r4_c patch-libgfortran_generated_minloc0_8_r8_c patch-libgfortran_generated_minloc1_16_i16_c patch-libgfortran_generated_minloc1_16_i1_c patch-libgfortran_generated_minloc1_16_i2_c patch-libgfortran_generated_minloc1_16_i4_c patch-libgfortran_generated_minloc1_16_i8_c patch-libgfortran_generated_minloc1_16_r10_c patch-libgfortran_generated_minloc1_16_r16_c patch-libgfortran_generated_minloc1_16_r4_c patch-libgfortran_generated_minloc1_16_r8_c patch-libgfortran_generated_minloc1_4_i16_c patch-libgfortran_generated_minloc1_4_i1_c patch-libgfortran_generated_minloc1_4_i2_c patch-libgfortran_generated_minloc1_4_i4_c patch-libgfortran_generated_minloc1_4_i8_c patch-libgfortran_generated_minloc1_4_r10_c patch-libgfortran_generated_minloc1_4_r16_c patch-libgfortran_generated_minloc1_4_r4_c patch-libgfortran_generated_minloc1_4_r8_c patch-libgfortran_generated_minloc1_8_i16_c patch-libgfortran_generated_minloc1_8_i1_c patch-libgfortran_generated_minloc1_8_i2_c patch-libgfortran_generated_minloc1_8_i4_c patch-libgfortran_generated_minloc1_8_i8_c patch-libgfortran_generated_minloc1_8_r10_c patch-libgfortran_generated_minloc1_8_r16_c patch-libgfortran_generated_minloc1_8_r4_c patch-libgfortran_generated_minloc1_8_r8_c patch-libgfortran_generated_minval_i16_c patch-libgfortran_generated_minval_i1_c patch-libgfortran_generated_minval_i2_c patch-libgfortran_generated_minval_i4_c patch-libgfortran_generated_minval_i8_c patch-libgfortran_generated_minval_r10_c patch-libgfortran_generated_minval_r16_c patch-libgfortran_generated_minval_r4_c patch-libgfortran_generated_minval_r8_c patch-libgfortran_generated_norm2_r10_c patch-libgfortran_generated_norm2_r16_c patch-libgfortran_generated_norm2_r4_c patch-libgfortran_generated_norm2_r8_c patch-libgfortran_generated_pack_c10_c patch-libgfortran_generated_pack_c16_c patch-libgfortran_generated_pack_c4_c patch-libgfortran_generated_pack_c8_c patch-libgfortran_generated_pack_i16_c patch-libgfortran_generated_pack_i1_c patch-libgfortran_generated_pack_i2_c patch-libgfortran_generated_pack_i4_c patch-libgfortran_generated_pack_i8_c patch-libgfortran_generated_pack_r10_c patch-libgfortran_generated_pack_r16_c patch-libgfortran_generated_pack_r4_c patch-libgfortran_generated_pack_r8_c patch-libgfortran_generated_parity_l16_c patch-libgfortran_generated_parity_l1_c patch-libgfortran_generated_parity_l2_c patch-libgfortran_generated_parity_l4_c patch-libgfortran_generated_parity_l8_c patch-libgfortran_generated_product_c10_c patch-libgfortran_generated_product_c16_c patch-libgfortran_generated_product_c4_c patch-libgfortran_generated_product_c8_c patch-libgfortran_generated_product_i16_c patch-libgfortran_generated_product_i1_c patch-libgfortran_generated_product_i2_c patch-libgfortran_generated_product_i4_c patch-libgfortran_generated_product_i8_c patch-libgfortran_generated_product_r10_c patch-libgfortran_generated_product_r16_c patch-libgfortran_generated_product_r4_c patch-libgfortran_generated_product_r8_c patch-libgfortran_generated_reshape_c10_c patch-libgfortran_generated_reshape_c16_c patch-libgfortran_generated_reshape_c4_c patch-libgfortran_generated_reshape_c8_c patch-libgfortran_generated_reshape_i16_c patch-libgfortran_generated_reshape_i4_c patch-libgfortran_generated_reshape_i8_c patch-libgfortran_generated_reshape_r10_c patch-libgfortran_generated_reshape_r16_c patch-libgfortran_generated_reshape_r4_c patch-libgfortran_generated_reshape_r8_c patch-libgfortran_generated_shape_i16_c patch-libgfortran_generated_shape_i4_c patch-libgfortran_generated_shape_i8_c patch-libgfortran_generated_spread_c10_c patch-libgfortran_generated_spread_c16_c patch-libgfortran_generated_spread_c4_c patch-libgfortran_generated_spread_c8_c patch-libgfortran_generated_spread_i16_c patch-libgfortran_generated_spread_i1_c patch-libgfortran_generated_spread_i2_c patch-libgfortran_generated_spread_i4_c patch-libgfortran_generated_spread_i8_c patch-libgfortran_generated_spread_r10_c patch-libgfortran_generated_spread_r16_c patch-libgfortran_generated_spread_r4_c patch-libgfortran_generated_spread_r8_c patch-libgfortran_generated_sum_c10_c patch-libgfortran_generated_sum_c16_c patch-libgfortran_generated_sum_c4_c patch-libgfortran_generated_sum_c8_c patch-libgfortran_generated_sum_i16_c patch-libgfortran_generated_sum_i1_c patch-libgfortran_generated_sum_i2_c patch-libgfortran_generated_sum_i4_c patch-libgfortran_generated_sum_i8_c patch-libgfortran_generated_sum_r10_c patch-libgfortran_generated_sum_r16_c patch-libgfortran_generated_sum_r4_c patch-libgfortran_generated_sum_r8_c patch-libgfortran_generated_transpose_c10_c patch-libgfortran_generated_transpose_c16_c patch-libgfortran_generated_transpose_c4_c patch-libgfortran_generated_transpose_c8_c patch-libgfortran_generated_transpose_i16_c patch-libgfortran_generated_transpose_i4_c patch-libgfortran_generated_transpose_i8_c patch-libgfortran_generated_transpose_r10_c patch-libgfortran_generated_transpose_r16_c patch-libgfortran_generated_transpose_r4_c patch-libgfortran_generated_transpose_r8_c patch-libgfortran_generated_unpack_c10_c patch-libgfortran_generated_unpack_c16_c patch-libgfortran_generated_unpack_c4_c patch-libgfortran_generated_unpack_c8_c patch-libgfortran_generated_unpack_i16_c patch-libgfortran_generated_unpack_i1_c patch-libgfortran_generated_unpack_i2_c patch-libgfortran_generated_unpack_i4_c patch-libgfortran_generated_unpack_i8_c patch-libgfortran_generated_unpack_r10_c patch-libgfortran_generated_unpack_r16_c patch-libgfortran_generated_unpack_r4_c patch-libgfortran_generated_unpack_r8_c patch-libgfortran_intrinsics_cshift0_c patch-libgfortran_intrinsics_eoshift0_c patch-libgfortran_intrinsics_eoshift2_c patch-libgfortran_intrinsics_pack_generic_c patch-libgfortran_intrinsics_reshape_generic_c patch-libgfortran_intrinsics_spread_generic_c patch-libgfortran_intrinsics_string_intrinsics_inc_c patch-libgfortran_intrinsics_transpose_generic_c patch-libgfortran_intrinsics_unpack_generic_c patch-libgfortran_io_list_read_c patch-libgfortran_io_transfer_c patch-libgfortran_io_unit_c patch-libgfortran_io_write_c patch-libgfortran_libgfortran_h patch-libgfortran_m4_bessel_m4 patch-libgfortran_m4_cshift1_m4 patch-libgfortran_m4_eoshift1_m4 patch-libgfortran_m4_eoshift3_m4 patch-libgfortran_m4_iforeach_m4 patch-libgfortran_m4_ifunction_logical_m4 patch-libgfortran_m4_ifunction_m4 patch-libgfortran_m4_in_pack_m4 patch-libgfortran_m4_matmul_m4 patch-libgfortran_m4_matmull_m4 patch-libgfortran_m4_pack_m4 patch-libgfortran_m4_reshape_m4 patch-libgfortran_m4_shape_m4 patch-libgfortran_m4_spread_m4 patch-libgfortran_m4_transpose_m4 patch-libgfortran_m4_unpack_m4 patch-libgfortran_runtime_convert_char_c patch-libgfortran_runtime_environ_c patch-libgfortran_runtime_in_pack_generic_c patch-libgfortran_runtime_memory_c Log message: SECURITY fix for CVE-2014-5044. Upstream commit: https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=213313 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/15 03:27:28 Modified files: x11/gnome/controlcenter: Makefile Added files: x11/gnome/controlcenter/patches: patch-panels_user-accounts_Makefile_in patch-panels_user-accounts_um-realm-manager_c Removed files: x11/gnome/controlcenter/patches: patch-configure_ac patch-panels_user-accounts_Makefile_am patch-panels_user-accounts_um-account-dialog_c Log message: Enable heimdal since it's a hard dependency for the users panel. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/15 03:28:17 Modified files: x11/gnome/initial-setup: Makefile x11/gnome/initial-setup/patches: patch-gnome-initial-setup_pages_account_Makefile_in patch-gnome-initial-setup_pages_keyboard_cc-input-chooser_c patch-gnome-initial-setup_pages_password_Makefile_in Added files: x11/gnome/initial-setup/patches: patch-gnome-initial-setup_pages_account_um-realm-manager_c patch-gnome-initial-setup_pages_password_um-realm-manager_c Removed files: x11/gnome/initial-setup/patches: patch-gnome-initial-setup_pages_account_gis-account-page_c patch-gnome-initial-setup_pages_account_gis-account-page_ui Log message: Enable heimdal since it's a hard dependency for the users panel. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/08/15 03:45:54 Modified files: distrib/alpha/common: install.md distrib/amd64/common: install.md distrib/aviion/ramdisk: install.md distrib/hppa : install.md distrib/i386/common: install.md distrib/loongson/ramdisk: install.md distrib/luna88k/ramdisk: install.md distrib/macppc/ramdisk: install.md distrib/sparc64/common: install.md Log message: Align install.md files with installer style. - { foo ; bar ; } -> { foo; bar; } - if foo ; then -> if foo; then OK halex@ CVSROOT: /cvs Module name: www Changes by: matthieu@cvs.openbsd.org 2014/08/15 04:31:57 Modified files: faq : current.html Log message: Explicit list of X resource files to delete. There may be files installed by packages there that should not be removed. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 06:09:41 Log message: import ruby-mfi-0.9.1 Gem for integrating with mFi devices over SSH. Currently only the mPower devices are supported. ok jeremy@ Status: Vendor Tag: jasper Release Tags: jasper_20141508 N ports/net/ruby-mfi/distinfo N ports/net/ruby-mfi/Makefile N ports/net/ruby-mfi/pkg/PLIST N ports/net/ruby-mfi/pkg/DESCR N ports/net/ruby-mfi/patches/patch-_metadata No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 06:14:05 Modified files: net : Makefile Log message: +ruby-mfi and sort the entries CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 06:19:13 Modified files: audio : Makefile converters : Makefile databases : Makefile devel : Makefile editors : Makefile emulators : Makefile fonts : Makefile games : Makefile Log message: sort CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 06:24:47 Modified files: graphics : Makefile lang : Makefile mail : Makefile security : Makefile sysutils : Makefile textproc : Makefile www : Makefile x11 : Makefile Log message: sort CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/15 07:29:10 Modified files: sysutils/ruby-puppet/3: Makefile Added files: sysutils/ruby-puppet/3/patches: patch-lib_puppet_type_service_rb Log message: Ensure flags are written out before starting the service as it may need to read it's flags from the filesystem. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 08:06:48 Modified files: sys/arch/alpha/conf: GENERIC sys/arch/amd64/conf: GENERIC sys/arch/i386/conf: GENERIC sys/arch/macppc/conf: GENERIC sys/arch/sgi/conf: GENERIC-IP27 GENERIC-IP30 GENERIC-IP32 sys/arch/sparc64/conf: GENERIC Log message: lofn(4) and nofn(4) are going away CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 08:07:39 Modified files: sys/dev/pci : files.pci Log message: unlink lofn(4) and nofn(4) CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 08:12:07 Removed files: sys/dev/pci : nofn.c nofnreg.h nofnvar.h lofn.c lofnreg.h lofnvar.h Log message: With deprecation of crypto(4) interface lofn(4) and nofn(4) become obsolete. No objections from the usual suspects. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 08:16:01 Modified files: share/man/man4 : Makefile crypto.4 pci.4 Removed files: share/man/man4 : lofn.4 nofn.4 Log message: lofn(4) and nofn(4) are gone CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 08:36:20 Modified files: regress/sys/crypto/aes: Makefile aestest.c Log message: Convert AES regress test from /dev/crypto to using kernel source code directly. This test case uses ECB vectors, therefore no chaining is required. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 08:39:04 Modified files: regress/sys/crypto/aesctr: Makefile aesctr.c Log message: Convert AES-CTR regress test from /dev/crypto to using kernel source code directly. This test is converted the same way jsing@ has recently converted an XTS test by pulling in xform.c code. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/15 08:51:03 Modified files: print/cups : Makefile Added files: print/cups/patches: patch-backend_usb-libusb_c Log message: This patch is still needed for proper USB support. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 09:13:38 Modified files: regress/sys/crypto/enc: Makefile des3.c Log message: Convert 3DES regress test from /dev/crypto to using kernel source code directly with a simplified CBC implementation. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 09:37:51 Modified files: sys/dev/pci : ubsec.c ubsecvar.h Log message: Remove support for public key operations CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 09:43:27 Modified files: sys/dev/pci : safe.c safevar.h Log message: Remove support for public key operations CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/15 09:45:38 Modified files: print/hplip : Makefile print/hplip/pkg: README-common Log message: README tweaks. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/15 09:46:24 Modified files: share/man/man4 : ubsec.4 safe.4 Log message: Public key operations are no longer supported CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/08/15 09:59:49 Modified files: www/chromium : Makefile distinfo Log message: update to 36.0.1985.143 CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/08/15 10:48:58 Modified files: share/zoneinfo : Makefile share/zoneinfo/datfiles: africa antarctica asia australasia backward etcetera europe factory iso3166.tab northamerica pacificnew southamerica systemv yearistype.sh zone.tab Added files: share/zoneinfo/datfiles: zone1970.tab Log message: Update to tzdata2014f from ftp.iana.org. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/15 10:55:32 Modified files: lib/libressl : ressl.c ressl.h Log message: use void * instead of char *. ok jsing CVSROOT: /cvs Module name: ports Changes by: kili@cvs.openbsd.org 2014/08/15 14:20:50 Modified files: productivity/akonadi: Makefile Log message: Missing bump. CVSROOT: /cvs Module name: ports Changes by: kili@cvs.openbsd.org 2014/08/15 16:07:43 Modified files: lang/gcc/4.8/patches: patch-libgfortran_m4_bessel_m4 patch-libgfortran_m4_cshift1_m4 patch-libgfortran_m4_eoshift1_m4 patch-libgfortran_m4_eoshift3_m4 patch-libgfortran_m4_iforeach_m4 patch-libgfortran_m4_in_pack_m4 patch-libgfortran_m4_matmull_m4 patch-libgfortran_m4_pack_m4 patch-libgfortran_m4_shape_m4 patch-libgfortran_m4_spread_m4 patch-libgfortran_m4_transpose_m4 patch-libgfortran_m4_unpack_m4 Log message: Fix a bunch of patches that were recersed by accident. ok pascal@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/16 01:42:39 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus mi distrib/sets/lists/comp: mi distrib/sets/lists/etc: mi distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/16 01:49:27 Modified files: usr.bin/ftp : cmds.c ftp.c small.c util.c Log message: I found a number of interactive events which can cause signals, and go down paths not previously marked as signal handled unsafe. Try to clean up a few of them especially regarding errno, mark others as unsafe, and repair a few by avoiding stdio. Glanced at by misc people in Slovenia, but considered too risky before release.. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/16 05:14:05 Modified files: devel/gdb : Makefile Added files: devel/gdb/patches: patch-include_filenames_h Log message: Our libiberty does not have filename_cmp(), but since it would simply call strcmp(), use a macro when building gdb and most of all libbfd. Fixes linking against libbfd with our system libiberty. reviewed and ok pascal@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/16 07:37:45 Modified files: devel/pango : Makefile distinfo Log message: Update to pango-1.36.6. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/16 10:38:38 Modified files: bin/ps : print.c Log message: reduce cutoff for "hours only" start times to reduce window of ambiguity. ok deraadt CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/16 11:21:56 Modified files: lib/libcrypto/crypto: getentropy_linux.c Log message: getrandom(2) support for getentropy_linux This enables support for the new getrandom(2) syscall in Linux 3.17. If the call exists and fails, return a failure in getentropy(2) emulation as well. This adds a EINTR check in case the urandom pool is not initialized. Tested on Fedora Rawhide with 3.17rc0 and Ubuntu 14.04 ok deraadt@ CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/16 11:30:12 Modified files: regress/lib/libcrypto/gcm128: gcm128test.c Log message: use C rather than C++ array initialization syntax this causes errors with stricter C compilers CVSROOT: /cvs Module name: src Changes by: tobias@cvs.openbsd.org 2014/08/16 11:33:40 Modified files: lib/libc/sys : pipe.2 Log message: Fixed typo in "distinct". ok jmc@ CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/16 12:42:42 Modified files: lib/libcrypto/crypto: getentropy_linux.c Log message: only build the getrandom path if SYS_getrandom is defined. like the sysctl path CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/16 12:47:40 Modified files: regress/lib/libcrypto/engine: enginetest.c Log message: replace sprintf/strdup with asprintf in engine test CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/16 13:47:17 Modified files: usr.bin/mandoc : mdoc_macro.c regress/usr.bin/mandoc/mdoc/Bl: bareIt.in bareIt.out_ascii bareIt.out_lint Log message: If a stray .It follows .El, we are no longer in the list, even though the list is still the last processed macro. This fixes a regression introduced in mdoc_macro.c rev. 1.95: Ulrich Spoerlein reports that various of their kernel manuals trigger assertions. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/16 15:09:36 Modified files: lib/libc/gen : exec.3 Log message: Cover execvpe() in the description of what the envp arg means. from Justus Baumgartner (meddev50 (at) gmail.com) ok jmc@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/16 15:39:16 Modified files: sbin/sysctl : sysctl.c Log message: repair operation of kern.arandom, which will only allow a buffer of 512 bytes. As a result, it stopped working... ok miod CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/16 15:45:21 Modified files: games/manaplus : Makefile distinfo Log message: Update to 1.4.8.16 CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2014/08/17 00:08:05 Modified files: games/scummvm : Makefile distinfo games/scummvm/patches: patch-Makefile_common patch-configure Log message: update to 1.7.0 CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2014/08/17 00:17:05 Modified files: games/scummvm-tools: Makefile distinfo Log message: update to 1.7.0 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/17 00:19:33 Modified files: x11/gnome/ocrfeeder: Makefile Log message: Missing RUN_DEPENDS. reported by Jiri B CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/17 00:38:16 Modified files: devel/libidn : Makefile distinfo devel/libidn/pkg: PLIST Log message: Update to libidn-1.29. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/17 00:47:39 Modified files: sysutils/polkit: Makefile Added files: sysutils/polkit/patches: patch-src_polkitagent_polkitagentsession_c patch-src_polkitbackend_polkitd_c Log message: Merge a couple of fixes from upstream. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/17 01:15:41 Modified files: bin/ksh : ksh.1 sh.1 Log message: update the built-ins list: - "times" is both promoted to posix and special (ooh!) - "pwd" is promoted to posix, but not special (aah!) while here, jiggle the text somewhat to clarify that "non-POSIX" actually meant when posix mode is off, not mandated by posix joint work with guenther CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/17 03:00:44 Modified files: usr.bin/calendar/calendars: calendar.openbsd Log message: sync with hackathons.html CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/17 03:48:55 Modified files: sys/kern : subr_extent.c Log message: i broke the userland shim used for the extent regress test when i made it so struct pool was only visible to _KERNEL. tedu broke it too when he added the size argument to the kernel free functions. this fixes both issues. the main change is to provide a local version of struct pool with just the bit (pr_size) needed for extent to run. if extents take advantage of more malloc/pool features (eg, {M,PR}_ZERO then this will need to be updated again. found by and based on a diff from Theo Buehler ok mpi@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/17 05:11:34 Modified files: sys/arch/mips64/mips64: trap.c Log message: On kernels compiled with R10000 support, ignore (by simply returning) `bus error upon instruction fetch' exceptions where the faulting address is in the kernel, and at the very beginning of an I$ cache line. (I've experienced these on an R16000 Fuel since several months already) CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/17 06:04:42 Modified files: graphics/birdfont: Makefile distinfo graphics/birdfont/pkg: PLIST Log message: Update to 0.46 ok aja@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/17 06:08:50 Modified files: graphics/birdfont/patches: patch-configure patch-dodo_py patch-install_py Log message: Don't know why these weren't part of the first commit. Part of the birdfont-0.46 diff ok'd by aja@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/17 06:30:29 Modified files: regress/libexec/ld.so/initfirst/test2/libaa: Makefile regress/libexec/ld.so/initfirst/test2/libab: Makefile regress/libexec/ld.so/initfirst/test2/libac: Makefile regress/libexec/ld.so/initfirst/test2/libad: Makefile regress/libexec/ld.so/initfirst/test2/libae: Makefile regress/libexec/ld.so/randomdata/libaa: Makefile Log message: Fix regression tests for ld.so It now runs correctly with 'make depend regress' CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/17 08:41:03 Modified files: etc/rc.d : rc.subr Log message: When running interactively, display the output of the "check" action (ok or failed) like we do with all other actions. ok jung@ rpe@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/17 08:43:34 Modified files: etc : rc Log message: Execute /etc/netstart using sh(1) instead of sourcing it. Committing early to make sure we have time to fix any side-effect. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/17 12:42:07 Modified files: usr.bin/mandoc : mdoc_term.c regress/usr.bin/mandoc/mdoc/Bl: break.in break.out_ascii break.out_lint regress/usr.bin/mandoc/mdoc/Nm: Makefile Added files: regress/usr.bin/mandoc/mdoc/Nm: break.in break.out_ascii break.out_lint Log message: Segfault fixes from kristaps@. Note that .It and .Nm blocks without bodies cannot be generated by valid mdoc(7) syntax but are a adequate representations of invalid mdoc(7) constructs like Bl -hang It Bo Sh and Sh SYNOPSIS Nm Bo Sh. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/17 12:46:29 Modified files: usr.sbin/httpd : httpd.conf.5 Log message: don;t mark up {}; CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/17 15:01:24 Modified files: regress/usr.sbin/relayd: args-http-headerlength.pl Log message: Sync regress/usr.sbin/relayd with recent http.h changes CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/17 15:02:06 Modified files: usr.bin/mandoc : makewhatis.8 Log message: typo; Steven Honeyman CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/17 16:06:49 Modified files: usr.bin/mandoc : term_ascii.c Log message: While all current callers pass valid data to ascii_hspan() only, it's safer to assume incoming enum data might be invalid and catch it instead of happily returning an unitialized int. No functional change right now. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/17 16:08:53 Modified files: usr.bin/mandoc : term_ascii.c Log message: typo, sorry CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/17 16:25:53 Modified files: usr.bin/kdump : kdump.c Log message: Display symbolicly the mode argument of mkdir, mkfifo, mknod, and umask CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/17 16:43:07 Modified files: usr.bin/kdump : mksubr Log message: Use %#o instead of %#x for mode_t CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/17 19:28:44 Modified files: sys/kern : subr_pool.c Log message: external page headers use an RB tree to find the page header containing an item when its returned to the pool. this means you need to do an inexact comparison between an items address and the page address, cos a pool page can contain many items. previously this used RB_FIND with a compare function that would do math on every node comparison to see if one node (the key) was within the other node (the tree element). this cuts it over to using RB_NFIND to find the closest tree node instead of the exact tree node. the node compares turns into simple < and > operations, which inline very nicely with the RB_NFIND. the constraint (an item must be within a page) is then checked only once after the NFIND call. feedback from matthew@ and tedu@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/17 21:29:53 Modified files: usr.bin/kdump : kdump.c Log message: Add fancy printing of ktrace()'s ops argument mquery() has the exact same argument layout as mmap(), so share the case Fix a couple brace placement glitches CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/17 22:06:16 Modified files: share/man/man9 : Makefile mbuf.9 sys/kern : uipc_mbuf.c sys/sys : mbuf.h Log message: introduce mbuf list and queue apis. both manage fifo lists of mbufs and a count of the mbufs. struct mbuf_list and the ml_foo() apis can be used to build lists of mbufs where you dont need locking (eg, on the stack). struct mbuf_queue and mq_foo() wrap mbuf_lists with a mutex, and limits the number of mbufs that can be queued. they can be useful for moving mbufs between contexts/subsystems. with help from jmc@ for the manpage bits mpi@ is keen CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/17 22:23:11 Modified files: sys/dev/pcmcia : pcmcia_cis_quirks.c Log message: its a bit silly to include mbuf.h to get to malloc.h. just include malloc.h instead. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/17 22:48:22 Modified files: lib/libc/gen : exec.3 Log message: Add mention of execvpe() setting errno on failure. from Justus Baumgartner (meddev50 (at) gmail.com) CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/17 23:11:03 Modified files: sys/arch/amd64/amd64: aesni.c sys/arch/hppa/hppa: machdep.c sys/arch/hppa64/hppa64: machdep.c sys/crypto : cryptodev.c sys/dev/pci : if_myx.c sys/kern : kern_sysctl.c uipc_mbuf2.c sys/sys : mbuf.h Log message: dont rely on mbuf.h to provide pool.h. ok miod@, who has offerred to help with any MD fallout ok guenther@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 00:53:07 Modified files: www/ruby-passenger: Makefile Log message: BROKEN-alpha = .got subsegment exceeds 64K (size 83312) CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/18 01:06:27 Modified files: net/gssdp : Makefile distinfo Log message: update to gssdp-0.14.10 CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/18 01:42:12 Modified files: lang/gcc/4.9 : Makefile distinfo lang/gcc/4.9/patches: patch-gcc_config_alpha_alpha_c patch-gcc_config_gcc patch-gcc_configure patch-gcc_fortran_f95-lang_c patch-lto-plugin_configure Added files: lang/gcc/4.9/patches: patch-libgfortran_ChangeLog patch-libgfortran_generated_all_l16_c patch-libgfortran_generated_all_l1_c patch-libgfortran_generated_all_l2_c patch-libgfortran_generated_all_l4_c patch-libgfortran_generated_all_l8_c patch-libgfortran_generated_any_l16_c patch-libgfortran_generated_any_l1_c patch-libgfortran_generated_any_l2_c patch-libgfortran_generated_any_l4_c patch-libgfortran_generated_any_l8_c patch-libgfortran_generated_bessel_r10_c patch-libgfortran_generated_bessel_r16_c patch-libgfortran_generated_bessel_r4_c patch-libgfortran_generated_bessel_r8_c patch-libgfortran_generated_count_16_l_c patch-libgfortran_generated_count_1_l_c patch-libgfortran_generated_count_2_l_c patch-libgfortran_generated_count_4_l_c patch-libgfortran_generated_count_8_l_c patch-libgfortran_generated_cshift1_16_c patch-libgfortran_generated_cshift1_4_c patch-libgfortran_generated_cshift1_8_c patch-libgfortran_generated_eoshift1_16_c patch-libgfortran_generated_eoshift1_4_c patch-libgfortran_generated_eoshift1_8_c patch-libgfortran_generated_eoshift3_16_c patch-libgfortran_generated_eoshift3_4_c patch-libgfortran_generated_eoshift3_8_c patch-libgfortran_generated_iall_i16_c patch-libgfortran_generated_iall_i1_c patch-libgfortran_generated_iall_i2_c patch-libgfortran_generated_iall_i4_c patch-libgfortran_generated_iall_i8_c patch-libgfortran_generated_iany_i16_c patch-libgfortran_generated_iany_i1_c patch-libgfortran_generated_iany_i2_c patch-libgfortran_generated_iany_i4_c patch-libgfortran_generated_iany_i8_c patch-libgfortran_generated_in_pack_c10_c patch-libgfortran_generated_in_pack_c16_c patch-libgfortran_generated_in_pack_c4_c patch-libgfortran_generated_in_pack_c8_c patch-libgfortran_generated_in_pack_i16_c patch-libgfortran_generated_in_pack_i1_c patch-libgfortran_generated_in_pack_i2_c patch-libgfortran_generated_in_pack_i4_c patch-libgfortran_generated_in_pack_i8_c patch-libgfortran_generated_in_pack_r10_c patch-libgfortran_generated_in_pack_r16_c patch-libgfortran_generated_in_pack_r4_c patch-libgfortran_generated_in_pack_r8_c patch-libgfortran_generated_iparity_i16_c patch-libgfortran_generated_iparity_i1_c patch-libgfortran_generated_iparity_i2_c patch-libgfortran_generated_iparity_i4_c patch-libgfortran_generated_iparity_i8_c patch-libgfortran_generated_matmul_c10_c patch-libgfortran_generated_matmul_c16_c patch-libgfortran_generated_matmul_c4_c patch-libgfortran_generated_matmul_c8_c patch-libgfortran_generated_matmul_i16_c patch-libgfortran_generated_matmul_i1_c patch-libgfortran_generated_matmul_i2_c patch-libgfortran_generated_matmul_i4_c patch-libgfortran_generated_matmul_i8_c patch-libgfortran_generated_matmul_l16_c patch-libgfortran_generated_matmul_l4_c patch-libgfortran_generated_matmul_l8_c patch-libgfortran_generated_matmul_r10_c patch-libgfortran_generated_matmul_r16_c patch-libgfortran_generated_matmul_r4_c patch-libgfortran_generated_matmul_r8_c patch-libgfortran_generated_maxloc0_16_i16_c patch-libgfortran_generated_maxloc0_16_i1_c patch-libgfortran_generated_maxloc0_16_i2_c patch-libgfortran_generated_maxloc0_16_i4_c patch-libgfortran_generated_maxloc0_16_i8_c patch-libgfortran_generated_maxloc0_16_r10_c patch-libgfortran_generated_maxloc0_16_r16_c patch-libgfortran_generated_maxloc0_16_r4_c patch-libgfortran_generated_maxloc0_16_r8_c patch-libgfortran_generated_maxloc0_4_i16_c patch-libgfortran_generated_maxloc0_4_i1_c patch-libgfortran_generated_maxloc0_4_i2_c patch-libgfortran_generated_maxloc0_4_i4_c patch-libgfortran_generated_maxloc0_4_i8_c patch-libgfortran_generated_maxloc0_4_r10_c patch-libgfortran_generated_maxloc0_4_r16_c patch-libgfortran_generated_maxloc0_4_r4_c patch-libgfortran_generated_maxloc0_4_r8_c patch-libgfortran_generated_maxloc0_8_i16_c patch-libgfortran_generated_maxloc0_8_i1_c patch-libgfortran_generated_maxloc0_8_i2_c patch-libgfortran_generated_maxloc0_8_i4_c patch-libgfortran_generated_maxloc0_8_i8_c patch-libgfortran_generated_maxloc0_8_r10_c patch-libgfortran_generated_maxloc0_8_r16_c patch-libgfortran_generated_maxloc0_8_r4_c patch-libgfortran_generated_maxloc0_8_r8_c patch-libgfortran_generated_maxloc1_16_i16_c patch-libgfortran_generated_maxloc1_16_i1_c patch-libgfortran_generated_maxloc1_16_i2_c patch-libgfortran_generated_maxloc1_16_i4_c patch-libgfortran_generated_maxloc1_16_i8_c patch-libgfortran_generated_maxloc1_16_r10_c patch-libgfortran_generated_maxloc1_16_r16_c patch-libgfortran_generated_maxloc1_16_r4_c patch-libgfortran_generated_maxloc1_16_r8_c patch-libgfortran_generated_maxloc1_4_i16_c patch-libgfortran_generated_maxloc1_4_i1_c patch-libgfortran_generated_maxloc1_4_i2_c patch-libgfortran_generated_maxloc1_4_i4_c patch-libgfortran_generated_maxloc1_4_i8_c patch-libgfortran_generated_maxloc1_4_r10_c patch-libgfortran_generated_maxloc1_4_r16_c patch-libgfortran_generated_maxloc1_4_r4_c patch-libgfortran_generated_maxloc1_4_r8_c patch-libgfortran_generated_maxloc1_8_i16_c patch-libgfortran_generated_maxloc1_8_i1_c patch-libgfortran_generated_maxloc1_8_i2_c patch-libgfortran_generated_maxloc1_8_i4_c patch-libgfortran_generated_maxloc1_8_i8_c patch-libgfortran_generated_maxloc1_8_r10_c patch-libgfortran_generated_maxloc1_8_r16_c patch-libgfortran_generated_maxloc1_8_r4_c patch-libgfortran_generated_maxloc1_8_r8_c patch-libgfortran_generated_maxval_i16_c patch-libgfortran_generated_maxval_i1_c patch-libgfortran_generated_maxval_i2_c patch-libgfortran_generated_maxval_i4_c patch-libgfortran_generated_maxval_i8_c patch-libgfortran_generated_maxval_r10_c patch-libgfortran_generated_maxval_r16_c patch-libgfortran_generated_maxval_r4_c patch-libgfortran_generated_maxval_r8_c patch-libgfortran_generated_minloc0_16_i16_c patch-libgfortran_generated_minloc0_16_i1_c patch-libgfortran_generated_minloc0_16_i2_c patch-libgfortran_generated_minloc0_16_i4_c patch-libgfortran_generated_minloc0_16_i8_c patch-libgfortran_generated_minloc0_16_r10_c patch-libgfortran_generated_minloc0_16_r16_c patch-libgfortran_generated_minloc0_16_r4_c patch-libgfortran_generated_minloc0_16_r8_c patch-libgfortran_generated_minloc0_4_i16_c patch-libgfortran_generated_minloc0_4_i1_c patch-libgfortran_generated_minloc0_4_i2_c patch-libgfortran_generated_minloc0_4_i4_c patch-libgfortran_generated_minloc0_4_i8_c patch-libgfortran_generated_minloc0_4_r10_c patch-libgfortran_generated_minloc0_4_r16_c patch-libgfortran_generated_minloc0_4_r4_c patch-libgfortran_generated_minloc0_4_r8_c patch-libgfortran_generated_minloc0_8_i16_c patch-libgfortran_generated_minloc0_8_i1_c patch-libgfortran_generated_minloc0_8_i2_c patch-libgfortran_generated_minloc0_8_i4_c patch-libgfortran_generated_minloc0_8_i8_c patch-libgfortran_generated_minloc0_8_r10_c patch-libgfortran_generated_minloc0_8_r16_c patch-libgfortran_generated_minloc0_8_r4_c patch-libgfortran_generated_minloc0_8_r8_c patch-libgfortran_generated_minloc1_16_i16_c patch-libgfortran_generated_minloc1_16_i1_c patch-libgfortran_generated_minloc1_16_i2_c patch-libgfortran_generated_minloc1_16_i4_c patch-libgfortran_generated_minloc1_16_i8_c patch-libgfortran_generated_minloc1_16_r10_c patch-libgfortran_generated_minloc1_16_r16_c patch-libgfortran_generated_minloc1_16_r4_c patch-libgfortran_generated_minloc1_16_r8_c patch-libgfortran_generated_minloc1_4_i16_c patch-libgfortran_generated_minloc1_4_i1_c patch-libgfortran_generated_minloc1_4_i2_c patch-libgfortran_generated_minloc1_4_i4_c patch-libgfortran_generated_minloc1_4_i8_c patch-libgfortran_generated_minloc1_4_r10_c patch-libgfortran_generated_minloc1_4_r16_c patch-libgfortran_generated_minloc1_4_r4_c patch-libgfortran_generated_minloc1_4_r8_c patch-libgfortran_generated_minloc1_8_i16_c patch-libgfortran_generated_minloc1_8_i1_c patch-libgfortran_generated_minloc1_8_i2_c patch-libgfortran_generated_minloc1_8_i4_c patch-libgfortran_generated_minloc1_8_i8_c patch-libgfortran_generated_minloc1_8_r10_c patch-libgfortran_generated_minloc1_8_r16_c patch-libgfortran_generated_minloc1_8_r4_c patch-libgfortran_generated_minloc1_8_r8_c patch-libgfortran_generated_minval_i16_c patch-libgfortran_generated_minval_i1_c patch-libgfortran_generated_minval_i2_c patch-libgfortran_generated_minval_i4_c patch-libgfortran_generated_minval_i8_c patch-libgfortran_generated_minval_r10_c patch-libgfortran_generated_minval_r16_c patch-libgfortran_generated_minval_r4_c patch-libgfortran_generated_minval_r8_c patch-libgfortran_generated_norm2_r10_c patch-libgfortran_generated_norm2_r16_c patch-libgfortran_generated_norm2_r4_c patch-libgfortran_generated_norm2_r8_c patch-libgfortran_generated_pack_c10_c patch-libgfortran_generated_pack_c16_c patch-libgfortran_generated_pack_c4_c patch-libgfortran_generated_pack_c8_c patch-libgfortran_generated_pack_i16_c patch-libgfortran_generated_pack_i1_c patch-libgfortran_generated_pack_i2_c patch-libgfortran_generated_pack_i4_c patch-libgfortran_generated_pack_i8_c patch-libgfortran_generated_pack_r10_c patch-libgfortran_generated_pack_r16_c patch-libgfortran_generated_pack_r4_c patch-libgfortran_generated_pack_r8_c patch-libgfortran_generated_parity_l16_c patch-libgfortran_generated_parity_l1_c patch-libgfortran_generated_parity_l2_c patch-libgfortran_generated_parity_l4_c patch-libgfortran_generated_parity_l8_c patch-libgfortran_generated_product_c10_c patch-libgfortran_generated_product_c16_c patch-libgfortran_generated_product_c4_c patch-libgfortran_generated_product_c8_c patch-libgfortran_generated_product_i16_c patch-libgfortran_generated_product_i1_c patch-libgfortran_generated_product_i2_c patch-libgfortran_generated_product_i4_c patch-libgfortran_generated_product_i8_c patch-libgfortran_generated_product_r10_c patch-libgfortran_generated_product_r16_c patch-libgfortran_generated_product_r4_c patch-libgfortran_generated_product_r8_c patch-libgfortran_generated_reshape_c10_c patch-libgfortran_generated_reshape_c16_c patch-libgfortran_generated_reshape_c4_c patch-libgfortran_generated_reshape_c8_c patch-libgfortran_generated_reshape_i16_c patch-libgfortran_generated_reshape_i4_c patch-libgfortran_generated_reshape_i8_c patch-libgfortran_generated_reshape_r10_c patch-libgfortran_generated_reshape_r16_c patch-libgfortran_generated_reshape_r4_c patch-libgfortran_generated_reshape_r8_c patch-libgfortran_generated_shape_i16_c patch-libgfortran_generated_shape_i4_c patch-libgfortran_generated_shape_i8_c patch-libgfortran_generated_spread_c10_c patch-libgfortran_generated_spread_c16_c patch-libgfortran_generated_spread_c4_c patch-libgfortran_generated_spread_c8_c patch-libgfortran_generated_spread_i16_c patch-libgfortran_generated_spread_i1_c patch-libgfortran_generated_spread_i2_c patch-libgfortran_generated_spread_i4_c patch-libgfortran_generated_spread_i8_c patch-libgfortran_generated_spread_r10_c patch-libgfortran_generated_spread_r16_c patch-libgfortran_generated_spread_r4_c patch-libgfortran_generated_spread_r8_c patch-libgfortran_generated_sum_c10_c patch-libgfortran_generated_sum_c16_c patch-libgfortran_generated_sum_c4_c patch-libgfortran_generated_sum_c8_c patch-libgfortran_generated_sum_i16_c patch-libgfortran_generated_sum_i1_c patch-libgfortran_generated_sum_i2_c patch-libgfortran_generated_sum_i4_c patch-libgfortran_generated_sum_i8_c patch-libgfortran_generated_sum_r10_c patch-libgfortran_generated_sum_r16_c patch-libgfortran_generated_sum_r4_c patch-libgfortran_generated_sum_r8_c patch-libgfortran_generated_transpose_c10_c patch-libgfortran_generated_transpose_c16_c patch-libgfortran_generated_transpose_c4_c patch-libgfortran_generated_transpose_c8_c patch-libgfortran_generated_transpose_i16_c patch-libgfortran_generated_transpose_i4_c patch-libgfortran_generated_transpose_i8_c patch-libgfortran_generated_transpose_r10_c patch-libgfortran_generated_transpose_r16_c patch-libgfortran_generated_transpose_r4_c patch-libgfortran_generated_transpose_r8_c patch-libgfortran_generated_unpack_c10_c patch-libgfortran_generated_unpack_c16_c patch-libgfortran_generated_unpack_c4_c patch-libgfortran_generated_unpack_c8_c patch-libgfortran_generated_unpack_i16_c patch-libgfortran_generated_unpack_i1_c patch-libgfortran_generated_unpack_i2_c patch-libgfortran_generated_unpack_i4_c patch-libgfortran_generated_unpack_i8_c patch-libgfortran_generated_unpack_r10_c patch-libgfortran_generated_unpack_r16_c patch-libgfortran_generated_unpack_r4_c patch-libgfortran_generated_unpack_r8_c patch-libgfortran_intrinsics_cshift0_c patch-libgfortran_intrinsics_eoshift0_c patch-libgfortran_intrinsics_eoshift2_c patch-libgfortran_intrinsics_pack_generic_c patch-libgfortran_intrinsics_reshape_generic_c patch-libgfortran_intrinsics_spread_generic_c patch-libgfortran_intrinsics_string_intrinsics_inc_c patch-libgfortran_intrinsics_transpose_generic_c patch-libgfortran_intrinsics_unpack_generic_c patch-libgfortran_io_list_read_c patch-libgfortran_io_transfer_c patch-libgfortran_io_unit_c patch-libgfortran_io_write_c patch-libgfortran_libgfortran_h patch-libgfortran_m4_bessel_m4 patch-libgfortran_m4_cshift1_m4 patch-libgfortran_m4_eoshift1_m4 patch-libgfortran_m4_eoshift3_m4 patch-libgfortran_m4_iforeach_m4 patch-libgfortran_m4_ifunction_logical_m4 patch-libgfortran_m4_ifunction_m4 patch-libgfortran_m4_in_pack_m4 patch-libgfortran_m4_matmul_m4 patch-libgfortran_m4_matmull_m4 patch-libgfortran_m4_pack_m4 patch-libgfortran_m4_reshape_m4 patch-libgfortran_m4_shape_m4 patch-libgfortran_m4_spread_m4 patch-libgfortran_m4_transpose_m4 patch-libgfortran_m4_unpack_m4 patch-libgfortran_runtime_convert_char_c patch-libgfortran_runtime_environ_c patch-libgfortran_runtime_in_pack_generic_c patch-libgfortran_runtime_memory_c Log message: Update to GCC 4.9.1 + fix for CVE-2014-5044. As usual, sparc64 adastrap generated by tobiasu@, thanks! CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/08/18 02:46:27 Modified files: x11/i3 : Makefile x11/i3/patches : patch-src_commands_c patch-src_x_c Added files: x11/i3/patches : patch-i3bar_src_xcb_c patch-include_load_layout_h patch-src_con_c patch-src_load_layout_c Log message: Fixes from upstream: Bugfix: properly restore workspace containers (upstream git commit 679a5de8cfb9211afb1a1dd882e53bd672084754) Bugfix: missed case for decoration rerender (upstream git commit 56c284af8e281d9d5657e55b3edb7f7c673fc747) Bugfix: add a sync call to i3bar to confirm reparents before exiting (upstream git commit 4699c714b33afb1c264f3d19911b880267165b94) Bugfix: don't set focus in con_set_layout() on invisible workspaces (upstream git commit fc886315342b3a2292ad0c08394b6bb452663bb1) CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/08/18 03:30:52 Modified files: games/dunelegacy: Makefile games/dunelegacy/patches: patch-src_Game_cpp Added files: games/dunelegacy/patches: patch-include_FileClasses_GFXManager_h patch-src_FileClasses_GFXManager_cpp Log message: Performance fix for dunelegacy on OpenBSD. OK kirby@ CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/18 03:43:02 Modified files: sbin/iked : iked.c iked.h proc.c Log message: Sync proc.c with httpd. httpd needs SIGUSR1 but iked will ignore it now instead of terminating the process. ok mikeb@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/08/18 04:34:02 Modified files: x11/awesome : Makefile x11/awesome/patches: patch-awesomeConfig_cmake Added files: x11/awesome/patches: patch-lib_awful_widget_taglist_lua_in patch-lib_wibox_widget_systray_lua_in patch-systray_c Log message: Fixes from upstream: Fix check against clients in taglist (upstream git commit aedcd90d4da41132303636ba15170b6a43cc231f) wibox.widget.systray: Special case the empty systray (upstream git commit 3dd0c442a031f174000950981154139879933ab0) systray: Small consistency fixes (upstream git commit a250dcdbe12a3afa6ffa9fbb26f8c48c7e9cc049) CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/18 06:59:00 Modified files: usr.sbin/relayd: proc.c relayd.c relayd.h Log message: Sync proc.c with httpd. httpd needs SIGUSR1 but relayd will ignore it now instead of terminating the process. ok florian@ CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/18 07:13:42 Modified files: usr.sbin/snmpd : proc.c snmpd.c snmpd.h Log message: Sync proc.c with httpd. httpd needs SIGUSR1 but snmpd will ignore it now instead of terminating the process. ok blambert@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/18 07:25:54 Modified files: usr.bin/mandoc : mandoc.c Log message: kristaps@ found this with valgrind, merge his patch from bsd.lv: Fix a corner case where \H (where is the \0 character) would cause mandoc_escape() to read past the end of an allocated string. Found when a script scanning of all Mac OSX manuals accidentally also scanned binary (gzip'd) files, discussed with schwarze@ on tech@mdocml. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/18 07:29:13 Modified files: sys/arch/sparc64/dev: vnet.c Log message: this uses pools, but relied on mbuf.h to provide them. found by benoit@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/18 07:57:57 Modified files: app/cwm : calmwm.h group.c Log message: Get rid of nhidden in group_ctx; it actually never reported correctly since nhidden wasn't incremented nor decremeted in all the right places, thus confusing matters. We don't need to carry a count around, so just use a local variable in the one place we need one to supply XRestackWindows(). CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/18 08:34:58 Modified files: lib/libc/stdlib: malloc.c Log message: a small tweak to improve malloc in multithreaded programs. we don't need to hold the malloc lock across mmap syscalls in all cases. dropping it allows another thread to access the existing chunk cache if necessary. could be improved to be a bit more aggressive, but i've been testing this simple diff for some time now with good results. CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/18 08:35:37 Modified files: sys/conf : GENERIC Log message: pool debug back on CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/18 10:26:13 Modified files: usr.bin/mandoc : man_macro.c regress/usr.bin/mandoc/man/RS: Makefile regress/usr.bin/mandoc/man/SH: Makefile Added files: regress/usr.bin/mandoc/man/RS: broken.in broken.out_ascii broken.out_lint regress/usr.bin/mandoc/man/SH: empty_before.in empty_before.out_ascii empty_before.out_lint Log message: When the first child of the node being validated gets deleted during validation, man_node_unlink() switches to MAN_NEXT_CHILD. After that, we have to switch back to MAN_NEXT_SIBLING after completing validation, or subsequent parsing would add content into an already closed node, clobbering potentially existing children, causing information loss and a memory leak. Bug found by kristaps@ with valgrind in groff(7) on Mac OS X. Note that the switch back must be conditional, for if the node being validated itself gets deleted, we must *not* go to MAN_NEXT_SIBLING, which would not only yield wrong results in general but also crash in malformed manuals having an empty paragraph before the first .SH, for example OpenBSD c++filt(1). While here, add the missing as required before mandoc.h. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/18 11:23:06 Modified files: sys/arch/mips64/mips64: trap.c Log message: Sigh, ignoring instruction fetch bus errors for the kernel code should not depend upon the address being at the beginning of a cache line, for we may arrive in the middle of a line thanks to a branch. Noticed the hard way... CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/08/18 11:32:40 Log message: Import devel/colordiff: a colorized diff tool. OK chrisz@, jca@. Thanks. Status: Vendor Tag: edd Release Tags: edd_20140818 N ports/devel/colordiff/Makefile N ports/devel/colordiff/distinfo N ports/devel/colordiff/patches/patch-Makefile N ports/devel/colordiff/pkg/DESCR N ports/devel/colordiff/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/08/18 11:34:03 Modified files: devel : Makefile Log message: Link devel/colordiff. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/18 11:41:09 Modified files: x11/gnome/totem: Makefile distinfo Removed files: x11/gnome/totem/patches: patch-src_totem-grilo_c Log message: Update to totem-3.12.2. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/18 11:56:45 Modified files: sys/arch/armv7/omap: if_cpsw.c sys/arch/macppc/macppc: machdep.c Log message: Explicitely need now. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/18 11:59:58 Modified files: devel/colordiff: Makefile Log message: Add NO_TEST=Yes. ok edd@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/18 12:13:13 Modified files: x11/gnome/devel-docs: Makefile distinfo x11/gnome/devel-docs/pkg: PLIST Log message: Update to gnome-devel-docs-3.12.3. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/18 12:25:22 Modified files: devel/colordiff: Makefile Log message: Mark as GPLv2+, not just GPLv2. ok edd@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 12:29:08 Modified files: x11/qt4 : Makefile Log message: BROKEN-hppa = libQtWebKit.so.3.0: undefined reference to `__sync_sub_and_fetch_4' No point in trying to build it for days before seeing it failing horribly because hppa/atomic ops/webkit... there might be an easy fix/workaround; but right now hope is lost. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 13:01:59 Modified files: comms/gnokii : Makefile Log message: Mark BROKEN-alpha: gnokii-sms.c: In function 'savesms': gnokii-sms.c:577: error: unrecognizable insn: (insn 500 499 501 29 (set (reg:DI 291) (plus:DI (reg/f:DI 65 virtual-stack-vars) (const_int -41228 [0xffffffffffff5ef4]))) -1 (nil) (nil)) gnokii-sms.c:577: internal compiler error: in extract_insn, at recog.c:2077 CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/18 13:11:48 Modified files: lib/libssl/src/crypto: md32_common.h lib/libssl/src/crypto/md4: md4_dgst.c md4_locl.h lib/libssl/src/crypto/md5: md5_locl.h lib/libssl/src/crypto/ripemd: rmd_dgst.c rmd_locl.h lib/libssl/src/crypto/sha: sha256.c sha_locl.h Log message: remove return value from HOST_c2l/l2c macros These macros and asm inlines simulate a function returning a value, but nothing ever uses this return value. Remove the pseudo-returns and (void) casts discarding the unused values. This, maybe unsurprisingly, speeds things up a bit. It also removes the GCC 4.9 warnings about unused values. ok miod@ deraadt@ CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/18 13:15:34 Modified files: lib/libssl/src/crypto/des: des_locl.h lib/libssl/src/crypto/rc5: rc5_locl.h Log message: replace more ROTATE macros with plain-old C code. Let the compiler optimize these. Even older versions of gcc generate equal or better quality code than the inline asm. ok miod@ CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/18 13:28:50 Modified files: devel/colordiff: Makefile Added files: devel/colordiff/patches: patch-cdiff_sh Log message: In cdiff, use ftp(1) by default instead of tools from the ports tree. ok edd@ (maintainer) CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/18 13:41:18 Modified files: distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/18 14:50:29 Modified files: security/polarssl: Makefile distinfo security/polarssl/pkg: PLIST Removed files: security/polarssl/patches: patch-library_rsa_c patch-tests_suites_helpers_function Log message: SECURITY update to polarssl-1.3.8 - includes a fix for CVE-2014-4911 (DoS) - delete patches committed upstream - unbreak sparc64 - new features, see ChangeLog Regress tests pass on amd64 and sparc64. ok sthen@ Note that no port uses it yet. CVSROOT: /cvs Module name: src Changes by: tobias@cvs.openbsd.org 2014/08/18 14:58:56 Modified files: usr.sbin/dhcpd : packet.c Log message: Variables to count seen packets should be unsigned. ok krw@ CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/08/18 15:21:45 Log message: Import p5-Devel-CheckBin 0.02 Devel::CheckBin is a perl module that checks whether a particular command is available. OK sthen@ Status: Vendor Tag: bluhm Release Tags: bluhm_20140818 N ports/devel/p5-Devel-CheckBin/distinfo N ports/devel/p5-Devel-CheckBin/Makefile N ports/devel/p5-Devel-CheckBin/pkg/PLIST N ports/devel/p5-Devel-CheckBin/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/08/18 15:23:51 Modified files: devel : Makefile Log message: + p5-Devel-CheckBin CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/08/18 15:29:10 Modified files: devel/p5-Sub-Name: Makefile distinfo Log message: Update p5-Sub-Name to 0.09 CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 15:43:45 Added files: regress/usr.sbin/relayd: args-http-multi.pl args-http-put-multi.pl args-https-multi.pl args-https-put-multi.pl Log message: Add test cases for multiple small HTTP requests. Many PUT requests with ony byte content length triggered relayd to hang. This has been fixed already. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 15:49:17 Modified files: regress/sys/kern/sosplice/udp: args-multi.pl Log message: Make the multiple UDP packet test more reliable. The receive buffer limit also counts the mbufs in it, so packets could be dropped. Increase both send and receive socket buffer size. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 15:51:45 Modified files: regress/sys/kern/sosplice: funcs.pl Log message: Make the forking tests more reliable. During copy the read(2) system call might fail with EAGAIN when the other forked process has already read the data. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 15:53:40 Modified files: regress/sys/kern/sosplice/tcp: args-oobinline-nonblock.pl args-oobinline-reverse-nonblock.pl args-oobinline-reverse.pl args-oobinline.pl Log message: Make out of band data tests more reliable. As multiple tcp urgent bytes cannot be handled correctly, allow another variation. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 16:05:08 Modified files: regress/usr.sbin/relayd: README Added files: regress/sys/kern/sosplice: README Log message: Add a description of what the relayd and sosplice regression tests do. Also explain the optional environment variables. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/18 16:21:52 Modified files: usr.bin/mandoc : term.c Log message: Fix read access to uninitialized memory found by kristaps@ with valgrind, patch from kristaps@. Theoretically, this could lead to a buffer overrun and segfault, but only for very long output lines (about 1000 charecters) of exactly the right length or if by ill chance, the complete unused, uninitialized tail of the line output buffer (at least 1000 characters total length) would contain all blank characters. Anyway, the uninitialized data read wasn't used for anything. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 16:58:19 Modified files: regress/usr.sbin/relayd: Proc.pm Relayd.pm Remote.pm direct.pl funcs.pl relayd.pl remote.pl regress/usr.sbin/ospfd: Client.pm Ospfd.pm Proc.pm ospfd.pl regress/sys/kern/sosplice: LICENSE Proc.pm Remote.pm regress/sys/kern/sosplice/error: error.pl remote.pl regress/sys/kern/sosplice/tcp: direct.pl relay.pl remote.pl regress/sys/kern/sosplice/udp: direct.pl relay.pl remote.pl regress/sys/net/pf_divert: LICENSE Makefile Proc.pm Remote.pm Log message: Make the perl modules consistent for the multiple regression tests. This includes coding style, better error messages and variable naming. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/18 17:02:59 Log message: Import devel/py-singledispatch The singledispatch library brings functools.singledispatch from Python 3.4 to Python 2.6-3.3. PEP 443 proposed to expose a mechanism in the functools standard library module in Python 3.4 that provides a simple form of generic programming known as single-dispatch generic functions. This library is a backport of this functionality to Python 2.6 - 3.3. ok jca@ Status: Vendor Tag: bcallah Release Tags: bcallah-20140818 N ports/devel/py-singledispatch/Makefile N ports/devel/py-singledispatch/distinfo N ports/devel/py-singledispatch/pkg/DESCR N ports/devel/py-singledispatch/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/18 17:03:22 Modified files: devel : Makefile Log message: +py-singledispatch CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/18 17:07:11 Modified files: multimedia/livestreamer: Makefile distinfo multimedia/livestreamer/pkg: PLIST Log message: Update to 1.10.0 Large Changelog here: https://github.com/chrippa/livestreamer/releases CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 18:24:00 Modified files: usr.sbin/syslogd: syslogd.c Log message: Fix trailing white spaces. OK sthen@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 18:28:48 Modified files: usr.sbin/syslogd: privsep.c Log message: Replace manually written function names with __func__. OK sthen@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/18 18:53:01 Modified files: usr.sbin/syslogd: privsep.c Log message: The _exit codes in syslogd privsep.c were the wrong way around. Fatal errors should exit with 1, and regular shutdown should result in exit with 0. OK deraadt@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/18 21:28:53 Modified files: usr.bin/tcpbench: tcpbench.1 tcpbench.c Log message: add -4 and -6 flags for saying if you want to force ipv4 or ipv6 respectively. tweaks from jmc@ ok djm@ CVSROOT: /cvs Module name: ports Changes by: lteo@cvs.openbsd.org 2014/08/18 22:22:53 Modified files: net/snort : Makefile distinfo Log message: Update to Snort 2.9.6.2 (and its MASTER_SITES). Tested by myself on amd64, i386, macppc, and sparc64; tested by Markus Lude on sparc64. ok Markus Lude (maintainer) CVSROOT: /cvs Module name: src Changes by: daniel@cvs.openbsd.org 2014/08/18 23:18:16 Modified files: usr.bin/mandoc : roff.c Log message: libroff depends on libmandoc and so libmandoc should be included first. this change makes the code slightly more portable by removing a gcc extension (incomplete enum types) which is not part of ISO C. ok schwarze@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 23:33:47 Modified files: comms/gnokii : Makefile Log message: Instead of BROKEN-alpha, use CFLAGS=-fno-stack-protector to fix the build. Suggested by miod@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 23:35:58 Modified files: net/wireshark : Makefile Log message: BROKEN-alpha = .got subsegment exceeds 64K (size 101480) while here, remove comment about patch that got removed.. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 23:36:58 Modified files: lang/moarvm : Makefile Log message: BROKEN-alpha = dyncall_callvm.c:66:4: error: #error unsupported platform CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 23:50:29 Modified files: emulators/dgen-sdl: Makefile Log message: BROKEN-hppa the same reason as alpha, build was never reliable and never finished after spending days building the same file. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 23:51:58 Modified files: multimedia/libvpx: Makefile Log message: BROKEN-hppa, constantly hits the 12h timeout building the same file... CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/18 23:53:37 Modified files: infrastructure/db: user.list Log message: reserve _icbd user CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/18 23:53:59 Modified files: emulators/vbam : Makefile Log message: BROKEN-hppa, never built reliably there, gcc OOM or ICE after a while.. CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/18 23:54:37 Log message: Import net/icbd, ok jca@. ICB (Internet Citizen's Band) is an Internet teleconferencing program that uses a client-server model to allow users across the Internet to communicate with each other. Status: Vendor Tag: pascal Release Tags: pascal_20140819 N ports/net/icbd/Makefile N ports/net/icbd/distinfo N ports/net/icbd/pkg/DESCR N ports/net/icbd/pkg/PLIST N ports/net/icbd/pkg/icbd.rc No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/18 23:56:17 Modified files: net : Makefile Log message: sync CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/19 00:21:48 Modified files: games/oolite/patches: patch-src_Core_Debug_OODebugTCPConsoleClient_m Added files: games/oolite/patches: patch-src_Core_OOCPUInfo_h Log message: Fix build on alpha by properly defining endianess CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/19 00:39:05 Modified files: audio/mpd : Makefile Log message: Fix build on alpha by adding it to MODGCC4_ARCHS, 4.6 works. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/19 00:39:48 Modified files: x11/gnome/librsvg: Makefile distinfo x11/gnome/librsvg/patches: patch-configure x11/gnome/librsvg/pkg: PLIST Log message: Update to librsvg-2.40.3. CVSROOT: /cvs Module name: src Changes by: uebayasi@cvs.openbsd.org 2014/08/19 02:04:51 Modified files: sys/net : if_pppx.c Log message: pppx(4): Correct pppx_dev_lookup() and pppx_dev2pxd() local declarations Those two functions take one dev_t argument, not int. Match declarations with reality. No functional changes. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/19 02:11:16 Log message: Import py-peewee, a small expressive ORM. Supports SQLite, MySQL and PostgreSQL as backends. For the latter two you'll need to install corresponding packages. okay jca@ Status: Vendor Tag: zhuk Release Tags: zhuk_20140819 N ports/databases/py-peewee/Makefile N ports/databases/py-peewee/distinfo N ports/databases/py-peewee/pkg/DESCR N ports/databases/py-peewee/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/19 02:12:13 Modified files: databases : Makefile Log message: Link in py-peewee. CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/08/19 03:38:39 Modified files: build : mirrors.dat Log message: update email address and add fingerprints for anoncvs.jp.openbsd.org CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/08/19 03:38:55 Modified files: . : anoncvs.html Log message: sync CVSROOT: /cvs Module name: src Changes by: uebayasi@cvs.openbsd.org 2014/08/19 04:01:50 Modified files: libexec/ld.so : boot.c Log message: ld.so(1): Missing stack var initialization Explicitly zero-clear stack array to read dynamic segments. This code has been working because stack is mapped as anon and zero'ed right after execve(2). Found by work-in-progress Valgrind port for OpenBSD/amd64. OK millert@ guenther@ CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/08/19 04:43:48 Log message: memcached backend for CGI::Session, ok sthen Status: Vendor Tag: henning Release Tags: henning_2014-08-19 N ports/www/p5-CGI-Session-Driver-memcached/Makefile N ports/www/p5-CGI-Session-Driver-memcached/distinfo N ports/www/p5-CGI-Session-Driver-memcached/pkg/DESCR N ports/www/p5-CGI-Session-Driver-memcached/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/08/19 04:44:44 Modified files: www : Makefile Log message: + p5-CGI-Session-Driver-memcached CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/19 05:13:16 Modified files: sys/dev/pci : if_myx.c Log message: in myx_start, replace while (space) { IFQ_POLL; myx_dequeue(free descr); IFQ_DEQUEUE; etc; } with while (space && myx_dequeue(free descr)) { IFQ_DEQUEUE; etc; } CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/19 06:24:04 Modified files: sys/dev/pckbc : pms.c Log message: Make sure state changes are properly serialized. When pms(4) is attached to a touchpad it generally presents two different wsmouse(4) devices: one for the touchpad itself and one for the clitpad and/or some interleaved packets. But since both devices are writing to the same pckbc slot, a race can occur if they try to change the state at the same time. So prevent two process opening the two /dev/wsmouse* node at the same time to corrupt the magic sequences needed to enable/disable the touchpad. ok schadchin@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/19 06:28:03 Modified files: sys/netinet6 : in6_proto.c ip6_mroute.c Log message: Keep pim code under #ifdef PIM to be coherent with what's in netinet/. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/19 06:39:36 Modified files: sbin/route : route.c usr.sbin/arp : arp.c usr.sbin/ndp : ndp.c Log message: Entries for broadcast addresses should also be ignored, just like local entries. ok florian@, mikeb@, henning@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/19 06:47:51 Modified files: app/cwm : calmwm.h group.c Log message: Pull highstack from group_ctx (and useless calculations of); in the one place that we use highstack, replace that usage with a local variable (for now until stacking is done properly). CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/19 06:49:41 Modified files: sys/net : route.c sys/netinet : if_ether.c Log message: When a local route entry is added for an ifa having a broadcast address, also adds a broadcast entry flagged with RTF_BROADCAST. Prior to this change broadcast entries were simple clonned ARP entries, that would be deleted once their timer expired since they would always be incomplete. With this change they are now persistant and identifiable with a new flag. Committing early to be able to deal with any potential fallout before we start relying on this. ok florian@, mikeb@, henning@ CVSROOT: /cvs Module name: ports Changes by: giovanni@cvs.openbsd.org 2014/08/19 07:54:56 Modified files: mail/postgrey : Makefile distinfo mail/postgrey/patches: patch-postgrey Log message: bugfix update to 1.35 maintainer timeout CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/19 08:06:38 src/usr.sbin/rcctl Update of /cvs/src/usr.sbin/rcctl In directory cvs.openbsd.org:/tmp/cvs-serv19263/rcctl Log Message: Directory /cvs/src/usr.sbin/rcctl added to the repository CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/19 08:08:20 Added files: usr.sbin/rcctl : Makefile rcctl.8 rcctl.sh Log message: Introduce rcctl(8), a simple utility for maintaining rc.conf.local(8). # rcctl usage: rcctl enable|disable|status|action [service [flags [...]]] Lots of man page improvement from the usual suspects (jmc@ and schwarze@) not hooked up yet but committing now so work can continue in-tree agreed by several CVSROOT: /cvs Module name: ports Changes by: rpointel@cvs.openbsd.org 2014/08/19 08:25:11 Modified files: textproc/py-yaml: Makefile distinfo Log message: update py-yaml to 3.11. ok pea@ (maintainer). CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/19 09:26:18 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Drop commented code. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/19 10:05:02 Modified files: usr.sbin/rcctl : rcctl.8 Log message: mdoc(7) style: remove trailing whitespace and .Pp before non-compact .Bd/.Bl CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/19 10:13:25 Modified files: lib/libssl/src/crypto/sha/asm: sha1-586.pl sys/dev/ic : arcofi.c sys/dev/pci : if_age.c Log message: Three independent typos for `independent' or `independently'. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/19 10:42:40 Modified files: databases/mariadb: Makefile distinfo databases/mariadb/patches: patch-cmake_install_macros_cmake patch-libmysql_CMakeLists_txt patch-scripts_mysqld_safe_sh patch-sql_CMakeLists_txt databases/mariadb/pkg: PLIST-server PLIST-tests Added files: databases/mariadb/patches: patch-CMakeLists_txt Log message: Update to MariaDB 10.0.13. ok giovanni@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/19 10:47:18 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Simplify some checks Return immediatly from add_flags() if we are already enabled and no flags are (re)set; unbreak "enable" under some circumstances. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/19 11:28:57 Modified files: usr.bin/mandoc : mdoc_validate.c regress/usr.bin/mandoc/mdoc/Bl: notype.in notype.out_ascii notype.out_lint Log message: Do not dereference a NULL pointer if a .Bl macro has no -type, -width, -offset or -compact arguments whatsoever; this got broken in mdoc_validate.c rev. 1.156. While here, sort headers. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/19 11:45:43 Modified files: usr.sbin/rcctl : rcctl.8 Log message: To make it even more obvious which combinations are allowed, provide sub-synopses for the various internal commands, and make it explicit what applies to daemons only and what applies to other services as well. Feedback and OK ajacoutot@. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/19 11:51:05 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Sync usage. CVSROOT: /cvs Module name: src Changes by: phessler@cvs.openbsd.org 2014/08/19 11:55:03 Modified files: sys/dev/ic : rtsx.c rtsxvar.h sys/dev/pci : rtsx_pci.c Log message: Enable rts5227, as found in my new Thinkpad x240. Shuffle the code around slightly, so we special case the 5209 chipset instead of semi-randomly. Tested on rts5227 by me, and rts5209 by stsp@ OK stsp@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/19 12:02:48 Modified files: sys/dev/ic : arcofi.c Log message: yet another typo CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/19 12:39:42 Modified files: app/cwm : conf.c Log message: Remove unnecessary memset since reload was replaced with restart; from Kent Spillner. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/19 13:01:15 Modified files: sys/arch/sgi/gio: giodevs Log message: Set Eng. GFE has a 32-bit ID register, so put it in the 32-bit section. No change but ordering in the generated files, so I won't even bother to regen them - this is only a `documentation' change. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/19 13:04:07 Modified files: sys/arch/sgi/xbow: xbridge.c xbridgereg.h Log message: More PIC programming magic, as well as a specific workaround for lost interrupts in PIC rev 1; from IRIX via Linux 2.5.69. This doesn't fix the lost SCSI interrupts jasper@ eventually experiences on Origin 350 systems, but this can't hurt anyway. CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/19 13:44:39 Modified files: devel/git : Makefile distinfo devel/git/patches: patch-Makefile patch-t_t0000-basic_sh patch-t_test-lib_sh devel/git/pkg : PLIST-main PLIST-x11 Log message: Update to git 2.1.0. ok benoit@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/19 15:19:00 Modified files: net/iftop : Makefile distinfo net/iftop/patches: patch-iptop.c Log message: update to iftop 1.0pre4, from Mikolaj Kucharski - mandoc -Tlint -Werror seems happy, drop groff dependency - fix wantlibs to make port-lib-depends-check happy - fix small typo - add OpenBSD cvs tag, to make portcheck happy - remove maintainer per his request CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/19 15:46:55 Modified files: mail/postfix/snapshot: Makefile distinfo Log message: Update to Postfix 2.12-20140801. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/19 16:35:01 Log message: Import x11/cegui. feedback bentley@/kirby@, ok kirby@ Crazy Eddie's GUI System is a free library providing windowing and widgets for graphics APIs / engines where such functionality is not natively available, or severely lacking. The library is object orientated, written in C++, and targeted at games developers who should be spending their time creating great games, not building GUI sub-systems! Status: Vendor Tag: pascal Release Tags: pascal_20140820 N ports/x11/cegui/Makefile N ports/x11/cegui/distinfo N ports/x11/cegui/pkg/DESCR N ports/x11/cegui/pkg/PLIST N ports/x11/cegui/patches/patch-cegui_src_DynamicModule_cpp N ports/x11/cegui/patches/patch-cegui_src_SimpleTimer_cpp N ports/x11/cegui/patches/patch-samples_framework_src_CEGuiGLFWSharedBase_cpp N ports/x11/cegui/patches/patch-samples_framework_src_CEGuiIrrlichtBaseApplication_cpp N ports/x11/cegui/patches/patch-samples_framework_src_CEGuiOgreBaseApplication_cpp N ports/x11/cegui/patches/patch-samples_framework_src_SamplesFrameworkBase_cpp No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/19 16:38:33 Modified files: net/iftop : Makefile net/iftop/patches: patch-iptop.c Log message: Print the MAC address correctly on architectures where char is signed. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/19 16:40:34 Log message: Import games/sumwars. feedback bentley@/kirby@, ok kirby@ Summoning Wars is an open source role-playing game, featuring both a single-player and a multiplayer mode for about 2 to 8 players. Status: Vendor Tag: pascal Release Tags: pascal_20140820 N ports/games/sumwars/Makefile N ports/games/sumwars/distinfo N ports/games/sumwars/pkg/DESCR N ports/games/sumwars/pkg/PLIST N ports/games/sumwars/patches/patch-CMakeLists_txt No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/19 16:44:17 Modified files: x11 : Makefile Log message: sync CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/19 16:44:44 Modified files: games : Makefile Log message: sync CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/08/19 16:51:20 Modified files: lang/racket : Makefile distinfo lang/racket/patches: patch-racket_src_configure patch-src_racket_sconfig_h lang/racket/pkg: PLIST Removed files: lang/racket/patches: patch-src_racket_src_mzrt_h Log message: Update to Racket 6.1. Tested on amd64 and i386. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/19 16:52:41 Log message: Import www/vimb Vimb is a fast and lightweight vim like web browser based on the webkit web browser engine and the GTK toolkit. Vimb is modal like the great vim editor and also easily configurable during runtime. Vimb is mostly keyboard driven and does not detract you from your daily work. ok landry@ zhuk@ Status: Vendor Tag: bcallah Release Tags: bcallah_20140820 N ports/www/vimb/Makefile N ports/www/vimb/distinfo N ports/www/vimb/patches/patch-Makefile N ports/www/vimb/patches/patch-tests_Makefile N ports/www/vimb/patches/patch-src_setting_c N ports/www/vimb/pkg/DESCR N ports/www/vimb/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/19 16:52:59 Modified files: www : Makefile Log message: +vimb CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/08/19 16:54:29 Modified files: net/iftop : Makefile Log message: Missing MODGNU_CONFIG_GUESS_DIRS. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/19 17:35:29 Modified files: usr.bin/mg : theo.c Log message: Let's talk about obstacles you face when trying to pull off a partial tedu@. CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2014/08/19 17:57:18 Modified files: usr.bin/ssh : sftp.c Log message: ~-expand lcd paths CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2014/08/19 17:58:28 Modified files: usr.bin/ssh : servconf.c Log message: When dumping the server configuration (sshd -T), print correct KEX, MAC and cipher defaults. Spotted by Iain Morgan CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/19 18:00:46 Modified files: sys/kern : subr_pool.c Log message: bring back r1.130: add an explicit rwlock around the global state (the pool list and serial number) rather than rely on implicit process exclusion, splhigh and splvm. the only things touching the global state come from process context so we can get away with an rwlock instead of a mutex. thankfully. ok matthew@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/19 18:29:15 Modified files: sysutils/binwalk: Makefile Added files: sysutils/binwalk/patches: patch-src_magic_executables patch-src_magic_filesystems patch-src_magic_images Log message: handler new py-libmagic, breakage reported by chris@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/19 18:50:45 Modified files: sys/dev/pci : if_sk.c if_skvar.h Log message: replace sks jumbo allocator with MCLGETI. the system provides jumbos in the right shape now, we dont have to do it by hand all over the place any more. rework the rxr ring management to use if_rxring while here. largely based on if_sk.c r1.152 and if_skvar.h r1.4 by kettenis. tested by me on: skc0 at pci3 dev 11 function 0 "Schneider & Koch SK-98xx" rev 0x12, GEnesis (0x0): apic 3 int 5 sk0 at skc0 port A: address 00:00:5a:99:8a:ec xmphy0 at sk0 phy 0: XMAC II Gigabit PHY, rev. 2 and this from ian mcwilliam skc0 at pci0 dev 9 function 0 "D-Link DGE-530T B1" rev 0x11, Yukon Lite (0x9): apic 2 int 17 sk0 at skc0 port A: address 00:17:9a:ba:b5:39 eephy0 at sk0 phy 0: 88E1011 Gigabit PHY, rev. 5 tested by brad@ too CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/19 18:59:56 Modified files: sys/dev/pci : if_nge.c if_ngereg.h Log message: replace the custom jumbo allocator with MCLGETI. putting this in the tree to make it easier for people to test. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/19 19:00:15 Modified files: sys/dev/pci : if_lge.c if_lgereg.h Log message: replace the custom jumbo allocator with MCLGETI. putting this in the tree to make it easier for people to test. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/19 19:02:02 Modified files: sys/dev/ic : ti.c tireg.h Log message: replace the custom jumbo allocator with MCLGETI. putting this in the tree to make it easier for people to test. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/19 19:02:50 Modified files: sys/dev/pci : if_nfe.c if_nfevar.h Log message: remove the custom jumbo allocator. its never been enabled or used. putting this into the tree to make it easier to test. CVSROOT: /cvs Module name: www Changes by: tedu@cvs.openbsd.org 2014/08/19 19:10:04 Modified files: . : security.html Log message: this isn't the right place to list all errata. link to the correct pages. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/19 19:28:55 Modified files: usr.bin/ssh : sftp.c Log message: djm how did you make a typo like that... CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/19 21:29:35 Modified files: sys/dev/pci : if_sk.c Log message: brad said i had some whitespace screwups in my previous diff. this cleans them up and the others i found in this file. no functional change. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/19 22:12:31 Modified files: gnu/usr.bin/binutils/include/opcode: i386.h gnu/usr.bin/binutils/opcodes: i386-dis.c Log message: Backport support for i386/amd64 'rdtscp' instruction from binutils-2.17 Request and testing by krw@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/20 00:03:20 Modified files: sys/dev/pci : eap.c sys/compat/linux: linux_futex.c Log message: Release CPU mutexes on EINVAL. ok guenther@ CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/20 00:14:43 Modified files: sys/arch/alpha/alpha: conf.c sys/arch/alpha/conf: GENERIC sys/arch/amd64/amd64: conf.c sys/arch/amd64/conf: GENERIC sys/arch/arm/arm: conf.c sys/arch/armish/conf: GENERIC sys/arch/hppa/hppa: conf.c sys/arch/hppa64/hppa64: conf.c sys/arch/i386/conf: GENERIC sys/arch/i386/i386: conf.c sys/arch/landisk/landisk: conf.c sys/arch/loongson/loongson: conf.c sys/arch/macppc/macppc: conf.c sys/arch/octeon/octeon: conf.c sys/arch/sgi/sgi: conf.c sys/arch/socppc/conf: GENERIC sys/arch/socppc/socppc: conf.c sys/arch/sparc64/sparc64: conf.c Log message: unlink crypto(4) pseudo device from the architecture dependant character device tables and kernel config files. ok deraadt CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/20 00:23:03 Modified files: sys/conf : files sys/crypto : crypto.c cryptodev.c cryptodev.h sys/kern : kern_sysctl.c sys/sys : conf.h sysctl.h Log message: Bye bye /dev/crypto The interface has been disabled by default for about 4 years and currently there's not much value in having it around at all. ok deraadt CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/20 00:31:22 Removed files: sys/crypto : cryptodev.c Log message: Bye bye /dev/crypto The interface has been disabled by default for about 4 years and currently there's not much value in having it around at all. ok deraadt CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/20 00:34:16 Modified files: mail : Makefile mail/bmf : Makefile Log message: Fix a typo in the mysql of bmf as noticed by brad@ Add the FLAVOR to the build so we can catch issues like this. CVSROOT: /cvs Module name: src Changes by: phessler@cvs.openbsd.org 2014/08/20 00:52:21 Modified files: distrib/macppc/ramdisk: install.md Log message: When doing Whole disk installs on macppc, blank the first 1 meg of the disk, so we can successfully create our partitions including the all important boot partition. Reported by many, but last by /u/TheWalkingGlitch via reddit OK krw@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/20 01:18:25 Modified files: security/libnettle: Makefile Log message: Better MASTER_SITES. CVSROOT: /cvs Module name: src Changes by: ratchov@cvs.openbsd.org 2014/08/20 01:19:42 Modified files: sys/dev/ic : arcofi.c Log message: Call audio_{pint,rint}() call-backs with the mutex held. Found by Izumi Tsutsui, thanks! ok miod@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/20 01:20:10 Added files: net/synergy/patches: patch-src_lib_ipc_IpcClientProxy_cpp patch-src_lib_ipc_IpcServerProxy_cpp patch-src_lib_server_ClientProxy1_4_cpp patch-src_lib_synergy_ProtocolUtil_h Log message: Readd some patches to let this build on sparc64, and probably mips64*/hppa. Fix is probably still wrong, but at least it builds.. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/20 01:28:03 Modified files: graphics/babl : Makefile graphics/gegl : Makefile Log message: Fix MASTER_SITES. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/20 01:38:45 Modified files: x11/gnome/libmediaart: Makefile distinfo x11/gnome/libmediaart/pkg: PLIST Log message: Update to libmediaart-0.6.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/20 01:39:32 Modified files: x11/gnome/tracker: Makefile Added files: x11/gnome/tracker/patches: patch-configure_ac patch-data_tracker-miner_pc_in patch-src_libtracker-extract_tracker-extract-info_c patch-src_libtracker-extract_tracker-extract-info_h patch-src_tracker-extract_tracker-extract-gstreamer_c patch-src_tracker-extract_tracker-extract-libav_c patch-src_tracker-extract_tracker-extract-mp3_c patch-src_tracker-extract_tracker-extract-vorbis_c patch-src_tracker-extract_tracker-extract_c patch-src_tracker-extract_tracker-extract_h patch-src_tracker-extract_tracker-main_c Log message: Merge code from upstream to support new libmediaart. CVSROOT: /cvs Module name: src Changes by: rpointel@cvs.openbsd.org 2014/08/20 01:55:45 Modified files: usr.sbin/rcctl : rcctl.sh Log message: unify the declaration of functions. ok aja@ CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/08/20 02:48:56 Modified files: . : plus.html Log message: plus.html for Aug 4-7 (last lot before unlock), ok from jj@. Includes changes to mandoc et al entries from prior weeks, from schwarze@. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/20 02:49:33 ports/geo/qgis/files Update of /cvs/ports/geo/qgis/files In directory cvs.openbsd.org:/tmp/cvs-serv19795/files Log Message: Directory /cvs/ports/geo/qgis/files added to the repository CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/20 02:54:45 Modified files: geo/qgis : Makefile distinfo geo/qgis/patches: patch-cmake_FindGDAL_cmake patch-cmake_FindGEOS_cmake patch-cmake_FindPostgres_cmake patch-debian_qgis_desktop patch-doc_CMakeLists_txt patch-src_app_qgisapp_cpp patch-src_core_CMakeLists_txt patch-src_core_qgsapplication_cpp patch-src_helpviewer_CMakeLists_txt patch-src_mapserver_CMakeLists_txt geo/qgis/pkg : PLIST Added files: geo/qgis/files : qgsexpressionparser.cpp qgsexpressionparser.hpp qgsrastercalcparser.cpp qgsrastercalcparser.hpp geo/qgis/patches: patch-CMakeLists_txt patch-src_analysis_CMakeLists_txt patch-src_core_qgsvectorlayerfeatureiterator_cpp patch-src_providers_delimitedtext_qgsdelimitedtextfeatureiterator_cpp patch-src_providers_gpx_qgsgpxfeatureiterator_cpp patch-src_providers_grass_qgsgrassfeatureiterator_cpp patch-src_providers_memory_qgsmemoryfeatureiterator_cpp patch-src_providers_mssql_qgsmssqlfeatureiterator_cpp patch-src_providers_ogr_qgsogrfeatureiterator_cpp patch-src_providers_oracle_qgsoraclefeatureiterator_cpp patch-src_providers_postgres_qgspostgresconnpool_h patch-src_providers_postgres_qgspostgresfeatureiterator_cpp patch-src_providers_spatialite_qgsspatialiteconnpool_h patch-src_providers_spatialite_qgsspatialitefeatureiterator_cpp patch-src_providers_wfs_qgswfsfeatureiterator_cpp Removed files: geo/qgis/patches: patch-src_app_attributetable_qgsattributetabledelegate_cpp patch-src_app_qgsabout_cpp patch-src_core_qgsmaplayerregistry_h patch-src_core_qgssearchstringparser_yy patch-src_gui_qgsmapcanvas_h patch-src_providers_postgres_qgspostgresprovider_cpp Log message: Long awaited update to QGIS 2.4.0. Since 1.8, QGIS requires bison > 2.4 at build time, but since noone cares enough our bison is still stuck at 2.3. To workaround this, add the parsers generated with a WIP bison 2.6.2 to files/, and comment out the Cmake goo to call/detect bison. Add patches from http://hub.qgis.org/issues/10762. I've used QGIS 1.8, 2.0, 2.2 and 2.4 without issues since > 2 years. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/20 03:00:36 Added files: geo/qgis/patches: patch-src_app_qgsabout_cpp Removed files: geo/qgis/patches: patch-src_core_spatialite_headers_spatialite_sqlite3_h patch-src_core_spatialite_headers_spatialite_sqlite3ext_h patch-src_core_spatialite_spatialite_c patch-src_core_spatialite_sqlite3_c Log message: Moar cvs add/rm CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/20 04:06:31 Modified files: sys/dev/pci : if_ix.c Log message: Implement rxrinfo ioctl for cluster usage statistics CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/20 05:23:42 Modified files: etc : MAKEDEV.common etc/etc.alpha : MAKEDEV etc/etc.amd64 : MAKEDEV etc/etc.armish : MAKEDEV etc/etc.armv7 : MAKEDEV etc/etc.hppa : MAKEDEV etc/etc.hppa64 : MAKEDEV etc/etc.i386 : MAKEDEV etc/etc.landisk: MAKEDEV etc/etc.loongson: MAKEDEV etc/etc.macppc : MAKEDEV etc/etc.octeon : MAKEDEV etc/etc.sgi : MAKEDEV etc/etc.sparc64: MAKEDEV etc/etc.zaurus : MAKEDEV etc/examples : sysctl.conf lib/libc/gen : sysctl.3 sbin/sysctl : sysctl.8 share/man/man4 : Makefile hifn.4 safe.4 ubsec.4 share/man/man4/man4.i386: glxsb.4 share/man/man8/man8.alpha: MAKEDEV.8 share/man/man8/man8.amd64: MAKEDEV.8 share/man/man8/man8.armish: MAKEDEV.8 share/man/man8/man8.armv7: MAKEDEV.8 share/man/man8/man8.hppa: MAKEDEV.8 share/man/man8/man8.hppa64: 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.macppc: MAKEDEV.8 share/man/man8/man8.octeon: MAKEDEV.8 share/man/man8/man8.sgi: MAKEDEV.8 share/man/man8/man8.sparc64: MAKEDEV.8 share/man/man8/man8.zaurus: MAKEDEV.8 share/man/man9 : crypto.9 malloc.9 usr.bin/fstat : fstat.1 fstat.c usr.bin/kdump : Makefile mkioctls usr.sbin/pstat : pstat.c Removed files: share/man/man4 : crypto.4 Log message: Remove userland bits related to the crypto(4) interface; ok deraadt CVSROOT: /cvs Module name: ports Changes by: armani@cvs.openbsd.org 2014/08/20 06:20:26 Modified files: emulators/nestopia: Makefile Log message: Fix homepage ok bentley@ (maintainer) CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/20 06:33:12 Modified files: app/cwm : group.c Log message: fix a misleading comment and function name CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/20 06:35:39 Modified files: app/cwm : screen.c Log message: whitespace CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/20 07:23:57 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Drop default values from rc.conf.local when we run "enable". CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/20 07:42:27 Modified files: app/cwm : group.c Log message: Split off group window restacking. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/20 09:04:14 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Greatly simplify get/set flags and status. Provide a unified output for the status of disabled services/daemons: foobar_flags will always be "NO" regardless of the type (pkg script, base system daemon, special variable). CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/20 09:15:29 Modified files: app/cwm : calmwm.h client.c conf.c group.c mousefunc.c screen.c search.c xutil.c Log message: Purely mechanical; unify 'num', 'no' and 'shortcut'. CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/08/20 10:20:57 Modified files: x11/smtube : Makefile distinfo x11/smtube/pkg : PLIST Log message: Update for SMTube to 14.7.0 sync with youtube changes. Ok zhuk@ CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/08/20 10:24:11 Modified files: x11/smplayer : Makefile distinfo x11/smplayer/patches: patch-src_preferences_cpp x11/smplayer/pkg: PLIST Log message: UPDATE for Smplayer to 14.3.0 Ok edd@ (Maintainer) CVSROOT: /cvs Module name: www Changes by: gonzalo@cvs.openbsd.org 2014/08/20 10:30:14 Modified files: . : events.html Log message: BSDDay .ar is over. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/08/20 11:15:17 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Store the positional args in vars with meaningful names which makes the arg checking block easier to comprehend. OK ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: henning@cvs.openbsd.org 2014/08/20 11:57:16 Modified files: mail/femail : Makefile distinfo Log message: after 9 years, I took the opportunity of two minor fixes/adjustments to finally call femail 1.0. so, update the port to femail-1.0. ok aja okan CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/20 12:59:56 Modified files: share/man/man4 : ubsec.4 Log message: remove one more reference to crypto(4); ok mikeb CVSROOT: /cvs Module name: src Changes by: florian@cvs.openbsd.org 2014/08/20 13:13:03 Modified files: usr.sbin/unbound/doc: unbound.8.in Log message: Better explain what unbound is for. While there fix some nits. Problem pointed out by deraadt@ Input jmc@, schwarze@ wouter@ committed a slightly different diff upstream. Pull that on out of svn and hand merge it. OK schwarze@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/20 13:16:27 Modified files: usr.sbin/syslogd: privsep.c syslogd.c syslogd.h Log message: Rename priv_gethostserv() to priv_getaddrinfo() as this is what the function does. Change the return code semantics to match getaddrinfo(3). OK deraadt@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/20 13:26:56 Modified files: audio/ruby-sonos: Makefile distinfo audio/ruby-sonos/pkg: PLIST Removed files: audio/ruby-sonos/patches: patch-lib_sonos_endpoint_a_v_transport_rb Log message: update to sonos-0.3.6 containing lots of bugfixes and new features: https://github.com/soffes/sonos/blob/master/Changelog.markdown CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/20 13:33:43 Modified files: usr.sbin/syslogd: syslogd.h Log message: Add missing OpenBSD RCS id. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/20 14:10:17 Modified files: usr.sbin/syslogd: privsep.c syslogd.c syslogd.h Log message: Replace gethostbyaddr(3) with getnameinfo(3). Remove the sigprocmask() that was necessary for gethostbyaddr() because the latter is not signal safe. Change the return code semantics of priv_getnameinfo() to match getnameinfo(3). input and OK jca@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/20 14:23:42 Modified files: driver/xf86-video-wsudl: configure.ac Log message: Remove duplicate AC_SUBST() CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/20 14:52:14 Log message: Run syslogd regressions tests. As only one syslogd can run per machine, each test kills any syslogd first. At the end the system's syslogd gets restarted. The test framework runs a client, and a server, and a syslogd. The messages are passed via the log socket or via UDP from the client to syslogd. From there UDP transport is used to reach the server. All processes write log files where the message has to show up. The test arguments are kept in the args-*.pl files. The content of a log file, the data sent to a pipe process and what the server received are checked. The invocation of the sendsyslog(2) syscall is checked with ktrace, the open file descriptors of syslogd are checked with fstat. Status: Vendor Tag: bluhm Release Tags: bluhm_20140820 N src/regress/usr.sbin/syslogd/Proc.pm N src/regress/usr.sbin/syslogd/README N src/regress/usr.sbin/syslogd/LICENSE N src/regress/usr.sbin/syslogd/Syslogd.pm N src/regress/usr.sbin/syslogd/Makefile N src/regress/usr.sbin/syslogd/args-default.pl N src/regress/usr.sbin/syslogd/Client.pm N src/regress/usr.sbin/syslogd/Server.pm N src/regress/usr.sbin/syslogd/funcs.pl N src/regress/usr.sbin/syslogd/syslogd.pl N src/regress/usr.sbin/syslogd/args-client-udp.pl N src/regress/usr.sbin/syslogd/args-client-udp4.pl N src/regress/usr.sbin/syslogd/args-client-udp-nodns.pl N src/regress/usr.sbin/syslogd/args-client-udp4-nodns.pl N src/regress/usr.sbin/syslogd/args-sendsyslog.pl N src/regress/usr.sbin/syslogd/args-socket.pl No conflicts created by this import CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/20 14:54:27 Modified files: regress/usr.sbin: Makefile Log message: Link ospfd and syslogd regression tests to the build. CVSROOT: /cvs Module name: ports Changes by: kili@cvs.openbsd.org 2014/08/20 15:15:23 Modified files: www/polipo : Makefile distinfo www/polipo/patches: patch-Makefile patch-forbidden_c patch-polipo_h www/polipo/pkg : PLIST Removed files: www/polipo/patches: patch-log_c Log message: Update to polipo-1.1.1. Two users (David Schaefer and me) are happy. no feedback from the third user. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/20 16:13:24 Modified files: share/man/man8 : rc.conf.8 Log message: Move the examples to the EXAMPLES section and add some actual reference manual style documentation to the DESCRIPTION. Feedback and OK rpe@ and ajacoutot@, also using feedback from deraadt@. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/20 17:56:57 Modified files: sys/dev/pci : if_nfe.c Log message: after allocating an mbuf and cluster you still need to init the length fields. found by steven roberts, who also tested this fix for me CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/20 18:04:58 Modified files: usr.sbin/syslogd: privsep.c syslogd.c Log message: Parse loghost in a separate function. Allow [] around hostname, needed for IPv6 addresses. Print full loghost specifier in case of error or debug. Make string sizes more precise. input henning@; input and OK deraadt@ CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/20 18:49:17 Modified files: games/renpy : Makefile distinfo games/renpy/pkg: PLIST Log message: Update to renpy-6.17.7. Release announcement: http://www.renpy.org/release/6.17 CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/20 19:08:52 Modified files: usr.bin/ssh : moduli.c ssh-keygen.c Log message: Free resources on error in mkstemp and fdopen ok djm@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 01:30:25 Modified files: print/cups-filters: Makefile distinfo print/cups-filters/pkg: PLIST Log message: Update to cups-filters-1.0.58. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 01:43:41 Modified files: print/foomatic-db: Makefile distinfo print/foomatic-db/pkg: PLIST Log message: Update to foomatic-db-4.0.20140707. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/08/21 02:02:56 Modified files: sysutils/pciutils: Makefile distinfo sysutils/pciutils/patches: patch-Makefile patch-lib_names-net_c patch-lib_obsd-device_c Log message: Update to pciutils-3.2.1 suggestion and ok jca@ ok matthieu@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: armani@cvs.openbsd.org 2014/08/21 02:04:16 Modified files: archivers/sltar: Makefile devel/cmocka : Makefile devel/cxxtools : Makefile x11/xglobe : Makefile Log message: Remove tab at end of HOMEPAGE revision bump explained & ok sthen CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/21 02:18:58 Modified files: x11/gtksourceview3: Makefile distinfo x11/gtksourceview3/pkg: PLIST Log message: update to gtksourceview3-3.12.3 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/21 02:23:00 Modified files: comms/minicom : Makefile distinfo comms/minicom/patches: patch-man_minicom_1 patch-src_main_c Added files: comms/minicom/patches: patch-src_script_c Log message: update to minicom-2.7 CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 02:54:58 Modified files: usr.sbin/rcctl : rcctl.sh Log message: If a service is disabled its flags are unconditionally set to "NO", so there's not need to display "enabled" or "disabled" when calling "status", we have the information already. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 04:06:14 Modified files: etc/rc.d : rc.subr Log message: Drop sanitation, _rc_parse_conf does this for us already. ok schwarze@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/21 04:07:07 Modified files: sys/net : route.c Log message: If an ifa has as NULL ifp pointer then is should be considered as invalid. When such thing happens, it means that the address is no longer configured on the system but still referenced by some routes. So do not return such ifa in ifa_ifwithroute(). Fix a panic reported by Pierre Bardou. ok mikeb@, henning@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/21 04:15:11 Modified files: usr.sbin/rcctl : rcctl.8 Log message: Now that rc.conf(8) defines what a base system service, a base system daemon, and a package daemon is, refer to it instead of duplicating information. While here, clean up wording. OK ajacoutot@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/21 04:23:47 Modified files: usr.sbin/arp : arp.8 arp.c Log message: Change the output of arp(8) to match what ndp(8) does and include the expire timer. This will makes it easier to add further information in a coherent way between these tools for local and broadcast entries. This new view displays either symbolic names (by default) or numerical addresses (with "-n") for hosts but not both at the same time, just like ndp(8), route(8) or netstat(1) do. ok henning@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 04:38:27 Modified files: security/p11-kit: Makefile distinfo Log message: Update to p11-kit-0.20.4. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/21 05:54:00 Modified files: sys/netinet6 : in6_pcb.c Log message: Misleading comments about splnet(). CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/21 06:27:52 Modified files: x11/gnome/empathy: Makefile distinfo Log message: update to empathy-3.12.5 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 06:37:27 Modified files: security/gnutls: Makefile distinfo security/gnutls/pkg: PLIST Added files: security/gnutls/patches: patch-lib_x509_rfc2818_hostname_c Log message: Update to gnutls-3.2.16. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 06:47:22 Modified files: usr.sbin/rcctl : rcctl.8 rcctl.sh Log message: Make "rcctl status" output match rc.conf(8) format. ok jasper@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/21 06:56:24 Modified files: usr.bin/mandoc : mdoc_html.c mdoc_macro.c mdoc_man.c mdoc_term.c regress/usr.bin/mandoc/mdoc/Ar: punct.in punct.out_ascii regress/usr.bin/mandoc/mdoc/Fl: Makefile noarg.in noarg.out_ascii punct.in punct.out_ascii regress/usr.bin/mandoc/mdoc/Nm: Makefile regress/usr.bin/mandoc/mdoc/Pa: Makefile Added files: regress/usr.bin/mandoc/mdoc/Nm: punct.in punct.out_ascii regress/usr.bin/mandoc/mdoc/Pa: punct.in punct.out_ascii Log message: Right after .Fl, a middle delimiter triggers an empty scope, just like a closing delimiter. This didn't work in groff-1.15, but it now works in groff-1.22. After being closed by delimiters, .Nm scopes do not reopen. Do not suppress white space after .Fl if the next node is a text node on the same input line; that can happen for middle delimiters. Fixing an issue reported by jmc@. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/21 08:24:08 Modified files: sys/arch/alpha/alpha: in_cksum.c sys/arch/alpha/stand/netboot: if_prom.c sys/arch/amd64/stand/libsa: pxe.c pxe_net.c sys/arch/arm/arm: genassym.cf sys/arch/armv7/imx: imxenet.c sys/arch/armv7/sunxi: sxie.c sys/arch/aviion/stand/boot: conf.c dev_net.c if_le.c sys/arch/i386/stand/libsa: pxe.c pxe_net.c sys/arch/landisk/stand/boot: getsecs.c sys/arch/luna88k/stand/boot: conf.c if_le.c sys/arch/m88k/m88k: in_cksum.c sys/arch/macppc/stand: net.c netif_of.c sys/arch/sparc/stand/common: net.c netif_sun.c sys/arch/sparc64/sparc64: in4_cksum.c sys/arch/sparc64/stand/ofwboot: net.c netif_of.c sys/arch/vax/if: if_de.c sys/arch/vax/stand/boot: if_de.c if_le.c if_qe.c if_ze.c netio.c sys/arch/vax/vax: in4_cksum.c Log message: Kill the remaining inclusion! CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/21 08:26:16 Modified files: usr.sbin/rcctl : rcctl.sh Log message: add $OpenBSD$ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/08/21 08:30:21 Modified files: sys/dev/pci : if_bge.c Log message: Fix a copy and pasto with the standard ring setup with calling if_rxr_init() to use BGE_STD_RX_RING_CNT instead of BGE_JUMBO_RX_RING_CNT. ok dlg@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/21 08:41:41 Modified files: devel/intellij : Makefile distinfo devel/intellij/pkg: PLIST Log message: Update IntelliJ IDEA port to 13.1.4b. Set MAINTAINER to face the reality. There are many tweaks pending, to be reviewed and committed separately. Many input from and okay daniel@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/21 08:52:56 Modified files: sys/dev/usb : uaudio.c ukbd.c umass.c ums.c Log message: Now that DVACT_DEACTIVATE is propagated to the children of a device when a driver does not implement a specific *_activate() handler and that our USB stack sets the dying flag before detaching a device, these specific handlers can die. CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/21 09:09:27 Modified files: sbin/pfctl : parse.y Log message: deny "once" flags for match rules; ok henning CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/21 10:03:50 Modified files: usr.bin/mandoc : cgi.c Log message: limit CGI process execution time to make REDoS attacks less effective; attack surface pointed out by Sebastien Marie CVSROOT: /cvs Module name: src Changes by: jca@cvs.openbsd.org 2014/08/21 10:46:48 Modified files: usr.bin/ftp : fetch.c Log message: Fix double free. ok guenther@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 10:50:11 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Unbreak when "SRCDIR=." reported by phessler@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/21 11:00:34 Modified files: usr.sbin/syslogd: privsep.c syslogd.c Log message: Send and receive UDP syslog packets on the IPv6 socket. OK henning@ CVSROOT: /cvs Module name: ports Changes by: jcs@cvs.openbsd.org 2014/08/21 11:07:56 Modified files: x11/xbanish : Makefile distinfo x11/xbanish/pkg: PLIST Log message: update to xbanish-1.2 CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/21 11:16:37 Modified files: usr.sbin/syslogd: syslog.conf.5 Log message: Document square brackets for IPv6 addresses. From FreeBSD. OK logan@ henning@ CVSROOT: /cvs Module name: src Changes by: chrisz@cvs.openbsd.org 2014/08/21 13:23:11 Modified files: usr.sbin/httpd : httpd.h server_fcgi.c server_file.c server_http.c Log message: Add Last-Modified: HTTP header. OK reyk@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/21 13:58:07 Modified files: comms/conserver: Makefile distinfo comms/conserver/pkg: PLIST conserver.rc Log message: fix up some more things to cope with the change to running conserver as a separate uid CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/21 14:27:03 Modified files: usr.bin/mandoc : mansearch.c Log message: Bugfix: make whatis(1) case-insensitive again. The traditional whatis(1) was case-insensitve and it's still documented that way, that but apparently got broken with or after the switch. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/21 14:54:04 Modified files: sysutils/findlib: Makefile sysutils/findlib/pkg: PLIST graphics/ocaml-camlimages: Makefile lang/ocaml : Makefile ocaml.port.mk Added files: lang/ocaml/pkg : DESCR-camlp4 DESCR-graphics DESCR-labltk DESCR-main PFRAG.dynlink-native-graphics PFRAG.dynlink-native-main PFRAG.native-camlp4 PFRAG.native-graphics PFRAG.native-labltk PFRAG.native-main PFRAG.shared-graphics PFRAG.shared-labltk PFRAG.shared-main PLIST-camlp4 PLIST-graphics PLIST-labltk PLIST-main Removed files: lang/ocaml/pkg : DESCR PFRAG.dynlink-native PFRAG.native PFRAG.shared PLIST Log message: Split off camlp4, labltk and graphics from our current OCaml 4.01. This will help when upgrading to upcoming OCaml 4.02, which will miss camlp4 and labltk. For a smooth transision, make all OCaml ports BUILD_DEPEND on camlp4 via MODULES=ocaml. sysutils/findlib is the only port using -labltk. graphics/ocaml-camlimage is the only port using -graphics. ok avsm@ CVSROOT: /cvs Module name: ports Changes by: jcs@cvs.openbsd.org 2014/08/21 15:03:10 Modified files: x11/xbanish : Makefile distinfo Log message: oops, update to xbanish-1.3 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/21 15:41:57 Modified files: net/bitlbee : Makefile distinfo Removed files: net/bitlbee/patches: patch-configure patch-lib_misc_c patch-otr_c Log message: update to bitlbee 3.2.2, from maintainer Tom Doherty (plus minor wantlib sync) CVSROOT: /cvs Module name: src Changes by: kspillner@cvs.openbsd.org 2014/08/21 15:49:37 Modified files: sys/dev/acpi : acpidock.c Log message: Set the sensor's status when docking and undocking, not just its value. With this change sensorsd(8) now correctly detects state changes when docking and undocking. ok mlarkin@ CVSROOT: /cvs Module name: ports Changes by: kspillner@cvs.openbsd.org 2014/08/21 15:59:55 Modified files: geo/openbsd-developers: Makefile geo/openbsd-developers/files: OpenBSD Log message: Add myself (hello, OpenBSD world!). ok many CVSROOT: /cvs Module name: ports Changes by: millert@cvs.openbsd.org 2014/08/21 16:31:49 Modified files: geo/openbsd-developers: Makefile geo/openbsd-developers/files: OpenBSD Log message: Update my location since I've moved. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/21 17:15:57 Modified files: security/openssl: Makefile distinfo security/openssl/pkg: PLIST Log message: security update to OpenSSL 1.0.1i CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/21 19:28:19 Modified files: distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/21 19:51:42 Modified files: games/wtf : Makefile distinfo Log message: Update to 20140820. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/21 20:03:20 Modified files: x11/sakura : Makefile distinfo Log message: Minor update to 3.1.5 CVSROOT: /cvs Module name: ports Changes by: gsoares@cvs.openbsd.org 2014/08/21 20:22:25 Modified files: security/stunnel: Makefile distinfo security/stunnel/patches: patch-tools_stunnel_conf-sample_in Log message: update to 5.03 OK kili@ CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/21 20:32:26 Modified files: games/openttd : Makefile distinfo games/openttd/pkg: PLIST Removed files: games/openttd/patches: patch-src_music_extmidi_cpp Log message: Update to openttd-1.4.2. Replace an unnecessary patch with a configure option. (from zhuk@) CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/21 21:15:46 Modified files: graphics/birdfont: Makefile distinfo graphics/birdfont/pkg: PLIST Log message: Update to 0.47 CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/21 22:16:31 Log message: Import etl-0.04.17. ETL is a multi-platform class and template library designed to add new datatypes and functions which combine well with the existing types and functions from the C++ Standard Template Library (STL). ok jca@ Status: Vendor Tag: bentley Release Tags: bentley_20140821 N ports/devel/etl/Makefile N ports/devel/etl/distinfo N ports/devel/etl/pkg/DESCR N ports/devel/etl/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/21 22:17:10 Modified files: devel : Makefile Log message: +etl CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/21 22:36:16 Modified files: usr.sbin/npppd/npppd: npppd_auth.c Log message: remove an uneeded test ok yasuoka@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/21 23:47:08 Modified files: usr.sbin : Makefile Log message: Enable rcctl(8). prodded by deraadt@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/22 01:41:48 Modified files: distrib/sets/lists/base: mi distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/22 01:42:56 Modified files: geo/openbsd-developers/files: OpenBSD Log message: Add myself. CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/22 01:59:52 Modified files: sbin/isakmpd : ike_phase_1.c Log message: fix memory leak in isakmpd ok gerhard@ (also corrected first version) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/22 01:59:54 Added files: security/openssl/patches: patch-crypto_des_Makefile Log message: Fix build on sparc64. In the 'you didnt think openssl was that insane' series, it tries to use m4 -B 8192 to generate some sparc asm from an m4 file. Unsurprisingly, our m4 doesn't support -B, it's not even in gm4's manpage, and gm4 info page says this about -B : These options are present for compatibility with System V `m4', but do nothing in this implementation. They may disappear in future releases, and issue a warning to that effect. I'm glad openssl can be built with System V m4.. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/22 02:10:38 Modified files: etc/rc.d : nfsd Log message: Set the default nfsd flags to "-tun 4". Matches the comment in rc.conf and the behaviour of the backwards compatibility code in rc.subr for nfs_server=YES. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/22 02:15:55 Modified files: lang/ruby/2.0 : Makefile Log message: add alpha/hppa to list of arches for no_ri_docs instead of marking it broken. sebastia@ confirms ruby works good enough for puppet on these arches. the underlying problem in miniruby still needs to be addressed though. ok jeremy@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/22 03:16:05 Modified files: devel/jdk/1.7 : Makefile distinfo devel/jdk/1.7/pkg: PLIST-jre PLIST-main Log message: Update to Java 7u65, including some security fixes. Committing on behalf of kurt@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/22 04:24:16 Modified files: geo/openbsd-developers: Makefile Log message: Also do a revision bump as noted by stsp@ thanks! CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/22 06:21:47 ports/sysutils/salt/files Update of /cvs/ports/sysutils/salt/files In directory cvs.openbsd.org:/tmp/cvs-serv22428/files Log Message: Directory /cvs/ports/sysutils/salt/files added to the repository CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/22 06:22:09 Modified files: sysutils/salt : Makefile sysutils/salt/patches: patch-salt_modules_openbsdservice_py sysutils/salt/pkg: PLIST Added files: sysutils/salt/files: openbsdrcctl.py Log message: Implement full service management using rcctl(8). CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/22 06:39:41 Modified files: x11/gnome/tracker: Makefile distinfo x11/gnome/tracker/patches: patch-configure_ac patch-src_tracker-extract_tracker-extract-gstreamer_c patch-src_tracker-extract_tracker-extract-mp3_c patch-src_tracker-extract_tracker-main_c x11/gnome/tracker/pkg: PLIST Removed files: x11/gnome/tracker/patches: patch-data_tracker-miner_pc_in Log message: Update to meta-tracker-1.0.3. CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/08/22 07:24:56 Modified files: www/youtube-dl : Makefile distinfo www/youtube-dl/pkg: PLIST Log message: Update to latest youtube-dl 2014.08.22.2. This fixes the vimeo extractor and brings some new ones in. ok pirofti@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/22 08:30:08 Modified files: sysutils/salt : Makefile sysutils/salt/files: openbsdrcctl.py Log message: Implement enabled/disabled. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/22 09:49:45 Modified files: usr.bin/mandoc : man.cgi.8 Log message: typo; noticed by jmc@ some time ago CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/22 10:14:11 Modified files: usr.sbin/syslogd: syslogd.c Log message: Instead of getting a nasty error message from privsep "syslogd: priv_getaddrinfo: overflow attempt in hostname" check the host and port length when parsing the config. OK henning@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/22 10:29:27 Removed files: usr.bin/signify: ge25519.c Log message: don't need this file, only the mod version CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/22 11:02:46 Modified files: mail/geary : Makefile distinfo Log message: Bugfix update to geary 0.6.2, reminded by aja@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/22 12:43:32 Modified files: devel/ruby-hub : Makefile distinfo Log message: update to hub-1.12.2 CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/22 13:04:01 Modified files: app/cwm : group.c mousefunc.c search.c xutil.c Log message: Fix nogroup regression, where nogroup became an actual group - the symantics between cwm groups and ewmh got in the way. Ensure a client that wants to be in nogroup stays in nogroup (thus stays in view), even when (re)reading NET_WM_DESKTOP. Paritially reverts patchset 644 (2014-02-07 13:09 PST) which deals with a NULL cc->group. All to be revisited when NET_WM_STATE_STICKY hits cwm. Reported by many; testing and ok phessler. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/22 13:18:44 Modified files: infrastructure/db: user.list Log message: reserve uid for bind CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/22 13:19:25 Modified files: etc : Makefile changelist group master.passwd rc rc.conf etc/mail : aliases etc/mtree : 4.4BSD.dist Removed files: etc/bind : db.localhost db.loopback db.loopback6.arpa named-dual.conf named-simple.conf root.hint etc/rc.d : named etc/systrace : usr_sbin_named Log message: disable use of bind in base; in the base use nsd/unbound instead. a proper & complete bind port will show up. discussed with many for years CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/08/22 13:28:25 Modified files: usr.sbin/bind : Makefile.bsd-wrapper Makefile.in configure configure.in usr.sbin/bind/bin: Makefile.in Log message: Strip the BIND code down to just building and installing dig, host and nslookup. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/22 13:52:56 ports/net/isc-bind/files Update of /cvs/ports/net/isc-bind/files In directory cvs.openbsd.org:/tmp/cvs-serv15616/files Log Message: Directory /cvs/ports/net/isc-bind/files added to the repository CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/22 14:03:56 Modified files: sys/arch/armish/conf: RAMDISK sys/arch/armv7/conf: RAMDISK-IMX RAMDISK-OMAP RAMDISK-SUNXI sys/arch/landisk/conf: RAMDISK sys/arch/sgi/conf: GENERIC-IP22 GENERIC-IP26 GENERIC-IP27 GENERIC-IP28 GENERIC-IP30 GENERIC-IP32 sys/arch/zaurus/conf: RAMDISK Log message: pseudo-device crypto was accidentally left for some architectures. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/22 14:32:13 Modified files: net/isc-bind : Makefile net/isc-bind/patches: patch-bin_named_include_named_globals_h net/isc-bind/pkg: PLIST isc_named.rc Added files: net/isc-bind/files: localhost loopback loopback6.arpa named.conf root.hint Log message: install sample configs and switch to running as _bind uid CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/08/22 14:42:57 Modified files: security/p5-Net_SSLeay: Makefile distinfo Log message: - update p5-Net-SSLeay to 1.66 - change license from OpenSSL to Perl CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/08/22 14:53:44 Modified files: faq : current.html Log message: bind->ports CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/22 14:56:00 Modified files: net/isc-bind : Makefile Log message: add comment (notes for possible renamings, things are a tad inconsistent at present) CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/08/22 16:14:53 Modified files: usr.sbin/arp : arp.c Log message: print leading 0's in MAC addresses again, ok deraadt CVSROOT: /cvs Module name: ports Changes by: kili@cvs.openbsd.org 2014/08/22 16:21:54 Modified files: devel/omake : Makefile devel/ocaml-camomile: Makefile graphics/ocaml-camlimages: Makefile devel/ocaml-pcre: Makefile textproc/gonzui: Makefile devel/ocaml-batteries: Makefile textproc/ocaml-xml-light: Makefile textproc/ocaml-xmlm: Makefile devel/ocaml-curses: Makefile devel/ocaml-extlib: Makefile textproc/ocaml-csv: Makefile textproc/ocaml-rss: Makefile devel/ocaml-bitstring: Makefile databases/ocaml-sqlite3: Makefile devel/ocaml-net: Makefile databases/ocaml-postgresql: Makefile devel/ocaml-calendar: Makefile devel/ocaml-mlgmp: Makefile Log message: Bump after lang/ocaml pkgname change (first round, more bumps will follow). CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/08/22 16:37:32 Modified files: usr.sbin/ndp : ndp.c Log message: switch ndp to display MAC addresses in 00:00:00:00:00:00 format, ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: kili@cvs.openbsd.org 2014/08/22 16:49:07 Modified files: devel/ounit : Makefile devel/ocaml-react: Makefile textproc/ocaml-text: Makefile devel/ocaml-zed: Makefile security/ocaml-ssl: Makefile devel/coccinelle: Makefile devel/ocaml-lwt: Makefile productivity/wyrd: Makefile devel/ocaml-lambda-term: Makefile devel/cil : Makefile devel/utop : Makefile x11/lablgtk2 : Makefile net/unison/stable: Makefile textproc/hevea : Makefile net/mldonkey/stable: Makefile Log message: More bumps due to lang/ocaml pkgname change. CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/22 16:59:05 Log message: Import icoutils-0.31.0. The icoutils are a set of command-line programs for extracting and converting images in Microsoft Windows(R) icon and cursor files. These files usually have the extension .ico or .cur, but they can also be embedded in executables and libraries (.dll-files). ok sthen@ Status: Vendor Tag: bentley Release Tags: bentley_20140822 N ports/graphics/icoutils/icoutils/Makefile N ports/graphics/icoutils/icoutils/distinfo N ports/graphics/icoutils/icoutils/pkg/DESCR N ports/graphics/icoutils/icoutils/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/22 16:59:45 Modified files: graphics : Makefile Log message: +icoutils CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/08/22 17:05:15 Modified files: lib/libc/sys : stat.2 sys/sys : _types.h stat.h types.h Log message: POSIX/FreeBSD/NetBSD/Linux/etc agree -- blk[size|cnt]_t is the bomb. So add the types blksize_t (a.k.a. int32_t) and blkcnt_t (a.k.a. int64_t). Use blkcnt_t in stat.h since the base type (int64_t) does not change. blksize_t in stat.h will follow after the tree is audited for signed issues, since the base type will change from u_int32_t to a POSIX compliant int32_t. Guidance and feedback from guenther@ ok millert@ CVSROOT: /cvs Module name: www Changes by: brad@cvs.openbsd.org 2014/08/22 17:52:00 Modified files: faq : current.html Log message: Also clear out the man pages for BIND. CVSROOT: /cvs Module name: src Changes by: pelikan@cvs.openbsd.org 2014/08/22 18:11:03 Modified files: regress/sbin/pfctl: Makefile sbin/pfctl : parse.y pfctl.c pfctl_parser.h Added files: regress/sbin/pfctl: pfail54.in pfail54.ok Log message: when you specify queues in a rule, make sure they have been defined. DIOCADDRULE EBUSY turns into an error message that pfctl -n catches. DIOCXCOMMIT EINVAL after the kernel rejected the rules was reported to occur, possibly from hfsc.c: this should be fixed as well. ok henning mikeb sthen CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/22 18:48:57 Modified files: sbin/isakmpd : ike_auth.c Log message: Fix double free in ike_auth.c ok jca@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/22 19:00:20 Modified files: usr.bin/mandoc : mandocdb.c Log message: Fix fd leak when fdopen fails. ok schwarze@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/22 20:25:34 Modified files: databases/mariadb: Makefile databases/mariadb/pkg: PLIST-main Log message: Add a conflict marker for MySQL server to the MariaDB client sub-package as some files moved around between the two ports/packages and their respective sub-packages. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/22 20:57:43 Log message: Import quadrupleback-0.1.0. Quadrupleback is a video game where intruders must be circled. It is a clone of the 1982 Doubleback game by Dale Lear for the Tandy Color Computer. ok bcallah@ Status: Vendor Tag: bentley Release Tags: bentley_20140822 N ports/games/quadrupleback/Makefile N ports/games/quadrupleback/distinfo N ports/games/quadrupleback/pkg/DESCR N ports/games/quadrupleback/pkg/PLIST N ports/games/quadrupleback/patches/patch-src_Makefile_in N ports/games/quadrupleback/patches/patch-Makefile_in No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/22 20:58:15 Modified files: games : Makefile Log message: +quadrupleback CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/22 22:00:41 Modified files: distrib/sets/lists/base: mi distrib/sets/lists/etc: mi distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/22 23:49:42 Modified files: etc : pf.conf Log message: Shrink this to the minimum, but reference /etc/examples/pf.conf (someone should really sit down and flesh out the examples) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/23 00:54:18 Modified files: security/ocaml-cryptokit: Makefile Log message: Another missing bump after ocaml change.. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/23 01:02:12 Modified files: devel/intellij/pkg: PLIST Log message: Remove duplicate items in PLIST, i doubt amd64 jars are installed on i386.. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/23 01:09:18 Modified files: devel/frama-c : Makefile lang/obc : Makefile math/coq : Makefile Log message: Last OCaml REVISION bumps do to changes in BUILD_DEPENDS. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/23 01:25:54 Modified files: lib/libc/net : getaddrinfo.3 gethostbyname.3 getnameinfo.3 getrrsetbyname.3 resolver.3 share/man/man5 : hosts.5 networks.5 resolv.conf.5 share/man/man7 : hier.7 hostname.7 share/man/man8 : intro.8 Log message: unbind; CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/23 01:33:11 Modified files: sysutils/salt/pkg: PLIST Log message: install_egg_info() behaves differently on some machines; fix the egg-info file to match the most successful ones (I will have a look at the underlying issue). CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/23 03:53:18 Modified files: sysutils/symon/patches: patch-platform_OpenBSD_sm_mbuf_c Log message: fix build, now needs to include sys/pool.h CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/23 04:01:51 ports/graphics/icoutils/pkg Update of /cvs/ports/graphics/icoutils/pkg In directory cvs.openbsd.org:/tmp/cvs-serv17401/pkg Log Message: Directory /cvs/ports/graphics/icoutils/pkg added to the repository CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/23 04:02:42 Added files: graphics/icoutils: Makefile distinfo graphics/icoutils/pkg: DESCR PLIST Removed files: graphics/icoutils/icoutils: Makefile distinfo graphics/icoutils/icoutils/pkg: DESCR PLIST Log message: fix bad import (ports/graphics/icoutils/icoutils) CVSROOT: /cvs Module name: src Changes by: stsp@cvs.openbsd.org 2014/08/23 04:34:18 Modified files: usr.sbin/ldomctl: ldomctl.8 Log message: Enhance the ldomctl(8) man page. Describe all available commands, document the init-system file format, and add examples guiding users through the process of setting up guest domains based on http://undeadly.org/cgi?action=article&sid=20121214153413 input and ok jasper jmc schwarze CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/23 04:45:41 Modified files: lang/php/5.4 : Makefile distinfo lang/php/5.4/patches: patch-ext_openssl_openssl_c Log message: update to php 5.4.32, ok robert@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/23 04:45:51 Modified files: lang/php/5.5 : Makefile distinfo lang/php/5.5/patches: patch-ext_openssl_openssl_c Log message: update to php 5.5.16, ok robert@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/23 05:38:56 Modified files: sys/arch/sparc64/sparc64: in4_cksum.c Log message: oddly now needs sys/socket.h, because someone removed struct socket fwd decl definition from somewhere in .h. This appears to be the only fallout in the kernel. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/23 06:09:39 Modified files: multimedia/livestreamer: Makefile distinfo multimedia/livestreamer/pkg: PLIST Log message: Mostly bugfix update to 1.10.1 CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/23 08:33:07 Modified files: graphics/qiv : Makefile distinfo graphics/qiv/patches: patch-Makefile graphics/qiv/pkg: PLIST Added files: graphics/qiv/patches: patch-qiv_1 Log message: - update qiv to 2.3.1, Changelog: http://spiegl.de/qiv/changes.shtml - install qiv-command example and mention it in man. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/23 08:52:41 Modified files: lib/libssl/src/ssl: s3_clnt.c s3_lib.c ssl_lib.c ssl_locl.h Log message: Replace the remaining ssl3_get_cipher_by_char() calls with n2s() and ssl3_get_cipher_by_id(). ok bcook@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/23 09:29:55 Modified files: usr.sbin/npppd/npppd: privsep.c Log message: close fd when fdopen fails ok yasuoka@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/23 09:37:38 Modified files: lib/libssl/src/ssl: s3_lib.c Log message: Remove non-standard GOST cipher suites (which are not compiled in currently). From Dmitry Eremin-Solenikov. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/23 12:23:37 Removed files: games/naev/base/patches: patch-src_opengl_c Log message: remove unneeded patch CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/23 12:32:55 Modified files: sys/netinet : in.c Log message: Move splnet() in in_ifinit() to protect less code that does not need it. OK mpi@ CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/08/23 14:44:30 Modified files: . : mail.html Log message: missing

, from "TJ" as part of a larger diff CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/08/23 23:01:42 Modified files: sys/dev/pci : if_bgereg.h Log message: Add some TX BD flags for BCM5717 family chips. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 01:33:26 Modified files: usr.sbin/rcctl : rcctl.8 rcctl.sh Log message: Make it possible to pass `-d' and `-f' to the rc.d(8) script. man page bits from schwarze@ ok jasper@ schwarze@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 01:46:54 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Since rcctl(8) can changes the position of such and such variable, sort the file so that we always have a consistent output. ok schwarze@ jasper@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 01:55:20 Modified files: etc/rc.d : rc.subr Log message: In debug mode (`-d'), only print the flags relevant to the rc.d(8) we are calling instead of all flags which makes it very difficult to see the information we actually need. ok schwarze@ robert@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 01:59:37 Modified files: x11/gnome/gvfs : Makefile distinfo Log message: Update to gvfs-1.20.3. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 02:13:15 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Fix args to needs_root() when using "disable" (broken in the v1.9 positional args cleanup commit). from Sebastien Marie CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/08/24 02:46:42 Modified files: sysutils/ansible: Makefile distinfo sysutils/ansible/pkg: PLIST Log message: Update ansible to 1.7.1 Besides performance enhancements and other bug fixes: - Security fix to disallow specifying 'args:' as a string, which could allow the insertion of extra module parameters through variables. OK aja@ sthen@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/24 03:03:05 Modified files: geo/spatialindex: Makefile distinfo geo/spatialindex/pkg: PLIST Log message: update to spatialindex 1.8.1 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 03:17:52 Modified files: www/privoxy : Makefile www/privoxy/pkg: privoxy.rc Log message: Multiline flags are not supported by the new parser for now; so unbreak default daemon_flags. reported by Sebastien Marie CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/08/24 03:50:17 Modified files: games/quadrupleback: Makefile Removed files: games/quadrupleback/patches: patch-Makefile_in Log message: Add libiconv MODULE and replace unnecessary patch with FAKE_FLAGS. Pointed out by ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: kili@cvs.openbsd.org 2014/08/24 07:25:55 Modified files: games/quadrupleback: Makefile Log message: plist change -> revision bump CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 07:29:16 Modified files: etc/rc.d : rc.subr Log message: In debug mode, make it clear when we are using the default flags when none are set. initial patch from me but reworked by schwarze@ ok schwarze@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 07:30:27 Modified files: etc/rc.d : rc.subr Log message: Drop unused variables. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 07:32:53 Modified files: etc/rc.d : rc.subr Log message: Drop uneeded parenthesis in usage(). ok schwarze@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/24 07:46:57 Modified files: usr.sbin/rcctl : rcctl.sh Log message: reduce indentation of main program by one tab, no functional change ok ajacoutot@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/24 08:36:46 Modified files: lib/libssl/src/ssl: d1_srvr.c s3_lib.c s3_srvr.c ssl_lib.c ssl_locl.h Log message: Replace the remaining uses of ssl3_put_cipher_by_char() with s2n and a ssl3_cipher_get_value() helper function, which returns the cipher suite value for the given cipher. ok miod@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/24 08:45:00 Modified files: sbin/mountd : mountd.8 mountd.c Log message: Remove imaginary non-reserved port support from mountd. This bug was reported by Julian Hsiao. ok concept deraadt@, miod@ mountd.8 diff is from jmc@. ok doug@ mountd.c diff is from me. ok miod@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/24 08:55:23 Modified files: lib/libssl/src/apps: ciphers.c Log message: Let SSL_CIPHER_description() allocate the buffer for the description, rather than passing in a fixed size buffer. This is yet another example of a horribly designed API - if the given buffer is NULL then SSL_CIPHER_description() allocates one for us (great!), which we then need to free (no problem). However, if this allocation fails it returns a pointer to a static string "OPENSSL_malloc Error" - obviously bad things happen if we call free() with this pointer. Unfortunately, there is no way of knowing that the function failed, other than comparing the returned string against the string literal - so do that before calling free()... Joint work with beck@ during g2k14. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/24 09:37:45 Modified files: app/cwm : calmwm.h group.c screen.c Log message: gc->hidden has never consistently kept track of a group's state; group_show() and group_hide() are not the only ways a group can change state - if all clients in a group are either hidden or unhidden, then that group's state should change, as well as the various EWMH ways. Instead of trying to keep track in a wide variety of places, simply query the clients in a group before needing to take action based on the group's state. Solves long standing confusion of when a group is hidden or not. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/24 09:49:58 Modified files: app/cwm : conf.c Log message: Continue effort to bring keyboard and mouse functions together; merge name_to_kbfunc and name_to_mousefunc. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/24 09:53:09 Modified files: share/mk : bsd.xorg.mk Log message: less verbose CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/24 10:07:29 Modified files: lib/libssl/src/apps: ocsp.c s_client.c s_server.c s_time.c Log message: Include to get select These files currently depends on the wrapper file indirectly including a header that provides select(). from Jonas 'Sortie' Termansen ok deraadt@ tedu@ CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/24 10:08:30 Modified files: lib/libssl/src/crypto/bio: bss_dgram.c Log message: Include to get struct timeval The crypto/bio/bss_dgram.c file assumes that another file indirectly includes that includes . from Jonas 'Sortie' Termansen ok deraadt@ tedu@ CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/24 10:11:39 Modified files: lib/libssl/src/crypto/err: err.c Log message: constify strerror return value There is no intention to modify the string returned by strerror and doing so is forbidden by the standard. from Jonas 'Sortie' Termansen ok tedu@ deraadt@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 11:01:44 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Drop obvious comments. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 11:15:24 Modified files: etc/rc.d : rc.subr Log message: Fix reversed logic. ok schwarze@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/24 11:17:16 Modified files: devel/intellij : Makefile devel/intellij/pkg: PLIST Log message: More appropriate PLIST fix. Bumping this time, too. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/24 11:47:54 Modified files: distrib/sets/lists/xbase: mi distrib/sets/lists/xetc: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/24 11:52:38 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Add a comment to unconfuse Ingo :-) CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/08/24 11:55:14 Modified files: sys/arch/amd64/amd64: pmap.c Log message: remove trailing whitespace CVSROOT: /cvs Module name: src Changes by: zhuk@cvs.openbsd.org 2014/08/24 12:01:27 Modified files: sys/dev/ic : if_wi_hostap.h if_wi_ieee.h sys/net80211 : ieee80211_ioctl.h Log message: Fix wrong IEEE 802.11 ioctl's: * SIOCG80211ALLNODES operates on struct ieee80211_nodereq_all, not struct ieee80211_nodereq. * Six SIOC* from wi(4) were using same codes with generic parts of IEEE 802.11 framework. Things worked due to the fact that size of data struct being passed is encoded in actual SIOC*, too. This commit means that ifconfig and some ports will need to be rebuilt, if any of affected SIOC* codes is used. Port bumps to follow. First part okay reyk@, whole diff okay mpi@ Heavy prodding to commit now from deraadt@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/24 12:05:17 Modified files: net/kismet : Makefile net/wmifinfo : Makefile sysutils/wmwlmon: Makefile security/bsd-airtools: Makefile Log message: Bump after changing a few IEEE 802.11 ioctls. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/24 12:10:26 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Start all error messages with "rcctl: " such that it is clear where they come from. While here, there is no need to check the argument of needs_root() before displaying it, it is always provided. ok ajacoutot@ jasper@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/24 12:32:20 Modified files: x11/gnome/grilo: Makefile distinfo x11/gnome/grilo/pkg: PLIST Log message: update to grilo-0.2.11 CVSROOT: /cvs Module name: www Changes by: austin@cvs.openbsd.org 2014/08/24 12:41:02 Modified files: . : orders.html Log message: No more mugs available CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/24 13:00:46 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Whitelisting allowed services is safer and less confusing than blacklisting auxiliary variables, and it makes the coupling to rc.subr(8) less tight. Feedback and OK ajacoutot@. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/08/24 13:15:46 Modified files: shells/bash : Makefile distinfo Log message: update to 4.3 patchlevel 24 CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/24 13:44:02 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Delete the function svc_get_all(). In svc_is_avail(), this simplifies the code by getting rid of the loop. When running "rcctl status", this allows to not run svc_is_special() - which spawns a grep - for each and every service, resulting in a 20% speedup. As a bonus, we get the special services listed at the end, where they are easier to see than mixed in with the daemons. ok ajacoutot@ jasper@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/24 13:58:52 Modified files: app/xsm : Makefile.bsd-wrapper Log message: Don't need to override datadir anymore. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/24 14:04:10 Modified files: . : Makefile.cross Log message: more NO_CROSS CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/24 14:06:57 Modified files: sys/arch/sparc64/sparc64: in4_cksum.c Log message: socketvar.h instead of socket.h, oops CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/24 14:22:20 Modified files: app/xwininfo : Makefile.bsd-wrapper Log message: Enable xcb-iccm CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/24 14:29:08 Modified files: shells/nsh/patches: patch-stats_c Log message: Unbreak, needs #include now ? CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/24 14:56:06 Modified files: www/liferea : Makefile distinfo www/liferea/pkg: PLIST Log message: Bugfix update to 1.10.11 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/08/24 16:25:03 Modified files: security/libsodium: Makefile distinfo security/libsodium/pkg: PLIST Log message: update to libsodium-0.70, for new features see https://github.com/jedisct1/libsodium/releases/tag/0.7.0 CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/24 17:40:41 Modified files: usr.bin/mandoc : term_ps.c Log message: When support for bold italic font was added to the parsers and to the generic parts of the formatters some time ago, the PostScript- and PDF-specific part of the formatters was neglected. Now pascal@ reports that mandoc -Tps throws an assertion on perl(1), apparently because that manual actually uses bold italic font. So here is an overdue implementation of bold italic font support for PostScript and PDF output. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/24 17:44:50 Modified files: usr.bin/mandoc : term_ps.c Log message: Oops. Garbage collect unused variable. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/24 19:38:40 Modified files: www/vimb : Makefile distinfo www/vimb/patches: patch-src_setting_c Log message: Update to 2.7 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 01:05:46 Modified files: devel/ptlib : Makefile Added files: devel/ptlib/patches: patch-make_ptbuildopts_mak_in Log message: Do not re-define INSTALL otherwise we end up using the one from ${WRKBUILD}. This unbreaks dependant ports like h323plus. CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2014/08/25 01:08:29 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 Log message: Correct old source archive names, xenocara isn't quite so old and sys was named srcsys for a while. CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/08/25 01:08:34 Removed files: usr.sbin/bind/bin/check: Makefile.in check-tool.c check-tool.h named-checkconf.8 named-checkconf.c named-checkconf.docbook named-checkconf.html named-checkzone.8 named-checkzone.c named-checkzone.docbook named-checkzone.html usr.sbin/bind/bin/dnssec: Makefile.in dnssec-keygen.8 dnssec-keygen.c dnssec-keygen.docbook dnssec-keygen.html dnssec-signzone.8 dnssec-signzone.c dnssec-signzone.docbook dnssec-signzone.html dnssectool.c dnssectool.h usr.sbin/bind/bin/named: Makefile.in builtin.c client.c config.c control.c controlconf.c interfacemgr.c listenlist.c log.c logconf.c lwaddr.c lwdclient.c lwderror.c lwdgabn.c lwdgnba.c lwdgrbn.c lwdnoop.c lwresd.8 lwresd.c lwresd.docbook lwresd.html lwsearch.c main.c named.8 named.conf.5 named.conf.docbook named.conf.html named.docbook named.html notify.c query.c server.c sortlist.c tkeyconf.c tsigconf.c update.c xfrout.c zoneconf.c usr.sbin/bind/bin/named/include/named: builtin.h client.h config.h control.h globals.h interfacemgr.h listenlist.h log.h logconf.h lwaddr.h lwdclient.h lwresd.h lwsearch.h main.h notify.h ns_smf_globals.h query.h server.h sortlist.h tkeyconf.h tsigconf.h types.h update.h xfrout.h zoneconf.h usr.sbin/bind/bin/named/unix: Makefile.in os.c usr.sbin/bind/bin/named/unix/include/named: os.h usr.sbin/bind/bin/nsupdate: Makefile.in nsupdate.8 nsupdate.c nsupdate.docbook nsupdate.html usr.sbin/bind/bin/rndc: Makefile.in rndc-confgen.8 rndc-confgen.c rndc-confgen.docbook rndc-confgen.html rndc.8 rndc.c rndc.conf rndc.conf.5 rndc.conf.docbook rndc.conf.html rndc.docbook rndc.html util.c util.h usr.sbin/bind/bin/rndc/include/rndc: os.h usr.sbin/bind/bin/rndc/unix: Makefile.in os.c usr.sbin/bind/bin/tests/system/masterformat: clean.sh setup.sh tests.sh usr.sbin/bind/bin/tests/system/masterformat/ns1: compile.sh example.db named.conf usr.sbin/bind/bin/tests/system/masterformat/ns2: named.conf usr.sbin/bind/bin/tests/system/rrsetorder: clean.sh dig.out.cyclic.good1 dig.out.cyclic.good2 dig.out.cyclic.good3 dig.out.cyclic.good4 dig.out.fixed.good dig.out.random.good1 dig.out.random.good10 dig.out.random.good11 dig.out.random.good12 dig.out.random.good13 dig.out.random.good14 dig.out.random.good15 dig.out.random.good16 dig.out.random.good17 dig.out.random.good18 dig.out.random.good19 dig.out.random.good2 dig.out.random.good20 dig.out.random.good21 dig.out.random.good22 dig.out.random.good23 dig.out.random.good24 dig.out.random.good3 dig.out.random.good4 dig.out.random.good5 dig.out.random.good6 dig.out.random.good7 dig.out.random.good8 dig.out.random.good9 tests.sh usr.sbin/bind/bin/tests/system/rrsetorder/ns1: named.conf root.db usr.sbin/bind/bin/tests/system/rrsetorder/ns2: named.conf usr.sbin/bind/bin/tests/system/rrsetorder/ns3: named.conf usr.sbin/bind/bin/tests/system/tsig: clean.sh tests.sh usr.sbin/bind/bin/tests/system/tsig/ns1: example.db named.conf usr.sbin/bind/bin/tests/system/zonechecks: a.db aaaa.db clean.sh cname.db dname.db noaddress.db nxdomain.db tests.sh usr.sbin/bind/doc: Makefile.in usr.sbin/bind/doc/arm: Bv9ARM-book.xml Bv9ARM.ch01.html Bv9ARM.ch02.html Bv9ARM.ch03.html Bv9ARM.ch04.html Bv9ARM.ch05.html Bv9ARM.ch06.html Bv9ARM.ch07.html Bv9ARM.ch08.html Bv9ARM.ch09.html Bv9ARM.ch10.html Bv9ARM.html Bv9ARM.pdf Makefile.in README-SGML isc-logo.eps isc-logo.pdf latex-fixup.pl man.dig.html man.dnssec-keygen.html man.dnssec-signzone.html man.host.html man.named-checkconf.html man.named-checkzone.html man.named.html man.rndc-confgen.html man.rndc.conf.html man.rndc.html usr.sbin/bind/doc/misc: Makefile.in dnssec format-options.pl ipv6 migration migration-4to9 options rfc-compliance roadmap sdb usr.sbin/bind/doc/xsl: Makefile.in copyright.xsl isc-docbook-chunk.xsl.in isc-docbook-html.xsl.in isc-docbook-latex-mappings.xml isc-docbook-latex.xsl.in isc-docbook-text.xsl isc-manpage.xsl.in pre-latex.xsl Log message: Start removing unused documentation and the server and related binaries source code. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 01:34:12 Modified files: etc/rc.d : rc.subr Log message: Put _rc_err argument under quotes to respect the syntax we are passing. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 01:35:37 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Display usage on 2 lines. reworked from an original diff by schwarze@ CVSROOT: /cvs Module name: www Changes by: doug@cvs.openbsd.org 2014/08/25 01:40:35 Modified files: faq : current.html Log message: Fix the path to rndc.conf.5 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 01:48:06 Modified files: sysutils/ruby-libvirt: Makefile sysutils/ruby-libvirt/pkg: PLIST Log message: unbreak by @comment the mkmf.log file which ruby 2.1 doesn't create spotted by aja@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/25 01:50:26 Modified files: bin/systrace : systrace.c lib/libc/gen : auth_subr.c lib/libutil : check_expire.c libexec/ftpd : ftpd.c monitor.c sbin/iked : ikev2_msg.c usr.bin/gzsig : sign.c ssh.c usr.sbin/cron : entry.c usr.sbin/ikectl: ikeca.c usr.sbin/ldapd : ldapd.c usr.sbin/pwd_mkdb: pwd_mkdb.c usr.sbin/smtpd : smtpd.c ssl.c Log message: Delete secret or secret-derived data with explicit_bzero. concept ok deraadt@ diff looks ok tedu@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 02:00:37 Modified files: sysutils/ruby-puppet/3: Makefile sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_service_openbsd_rb Removed files: sysutils/ruby-puppet/3/patches: patch-lib_puppet_type_service_rb Log message: rewrite the service provider to use rcctl, shrinking the code by about 75% percent.. ..while retaining some of the puppet-intrinsic quirks where a service won't be restarted if the flags change. that's still under investigation. this does however now allow for valid resources that would previously fail: service { 'multicast_host': enable => true} or service { 'ipsec': enable => true} CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/25 02:00:48 Modified files: sbin/isakmpd : ike_auth.c Log message: Fix a few fd leaks in isakmpd. The latter close is from a sweep of the tree looking for fdopen problems. While reviewing the patch, gerhard@ fixed another leak. ok gerhard@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 02:09:57 Modified files: sysutils/ruby-puppet/3: Makefile sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_service_openbsd_rb Log message: tyop CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/25 03:43:10 Modified files: mail/postfix : Makefile.inc Log message: Don't try to utilize libicu4c if it is installed. CVSROOT: /cvs Module name: ports Changes by: tobiasu@cvs.openbsd.org 2014/08/25 03:57:04 Modified files: lang/gcc/4.9 : Makefile lang/gcc/4.9/patches: patch-gcc_config_gcc patch-libgcc_config_host Added files: lang/gcc/4.9/patches: patch-gcc_config_sparc_openbsd_h patch-libatomic_configure_tgt Log message: Add sparc backend to gcc 4.9.1 Build time: 3.5 days @ 150MHz I do take 200MHz HyperSPARC and memory donations :-) OK pascal@ CVSROOT: /cvs Module name: src Changes by: jca@cvs.openbsd.org 2014/08/25 05:33:55 Modified files: usr.bin/ftp : fetch.c Log message: When using a proxy for an https connection, validate the cert hostname against the target hostname, not the proxy hostname. Issue reported by dlg@, fix by Alex Wilson on tech@, tweaks by me. No reply from tech@ CVSROOT: /cvs Module name: src Changes by: halex@cvs.openbsd.org 2014/08/25 06:08:55 Modified files: etc/rc.d : snmpd Log message: snmpd cannot reload ok reyk@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/25 06:49:19 Modified files: app/cwm : calmwm.h client.c conf.c cwm.1 cwmrc.5 group.c kbfunc.c xutil.c Log message: Implement _NET_WM_STATE_STICKY, bound to CM-s by default; allows any client to 'stick' to all desktops (ewmh speak) or groups - this currently has the same affect as setting a client's group to 'nogroup', with the exception that the client can also be in a group, so when un-sticking, the client will go back to its original group/desktop. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/08/25 07:13:19 Modified files: usr.bin/tmux : paste.c Log message: Don't allow pasting into input-disabled panes, from Anish R Athalye. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 07:30:32 Modified files: sysutils/salt : Makefile sysutils/salt/files: openbsdrcctl.py Log message: Fix pylint issues. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 07:43:01 Modified files: net/telepathy/telepathy-mission-control: Makefile distinfo Log message: update to telepathy-mission-control-5.16.3 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 07:44:54 Modified files: net/telepathy/telepathy-farstream: Makefile distinfo Log message: update to telepathy-farstream-0.6.2 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 07:45:40 Modified files: net/telepathy/telepathy-logger: Makefile distinfo net/telepathy/telepathy-logger/patches: patch-configure Log message: update to telepathy-logger-0.8.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 07:47:01 Modified files: net/telepathy/telepathy-glib: Makefile distinfo net/telepathy/telepathy-glib/pkg: PLIST Log message: update to telepathy-glib-0.24.1 CVSROOT: /cvs Module name: src Changes by: florian@cvs.openbsd.org 2014/08/25 08:00:34 Modified files: sys/net : if.c sys/netinet6 : in6.c in6_ifattach.c in6_var.h nd6.c nd6.h nd6_rtr.c Log message: Move sending of router solicitations to the kernel; receiving and processing of router advertisements was already in the kernel. With this rtsol{,d}(8) is no longer necessary. The kernel starts sending solicitations with # ifconfig $IF inet6 autoconf or inet6 autoconf in /etc/hostname.$IF. input stsp@ much help & OK mpi@ tweaks & OK bluhm@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 08:07:49 Modified files: net/telepathy/telepathy-glib: Makefile net/telepathy/telepathy-haze: Makefile net/telepathy/telepathy-idle: Makefile net/telepathy/telepathy-logger: Makefile net/telepathy/telepathy-qt: Makefile Log message: - zap pointless homepage - sort, shuffle, whitespace CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/25 08:26:25 Modified files: sys/dev/pci : if_ix.c ixgbe_phy.c ixgbe_type.h ixgbe_x540.c Log message: We have never limited the definition of "supported SPF modules" to the vendor/make whitelist maintained by Intel so there's no reason to start doing it now. When syncing the driver to the FreeBSD codebase I have decided to take this chunk as is but it appears that it breaks cheap chinese SFP+ fiber optics modules that we all love. And while there's still a lot of places where we check for the vendor OUI, most of these checks are not necessary. Issue reported and fix tested by Tony Sarendal. Thanks! CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/25 08:27:54 Modified files: etc/examples : httpd.conf usr.sbin/httpd : httpd.conf.5 parse.y Added files: share/misc : mime.types Log message: Add a generic system-wide /usr/share/misc/mime.types file that can be included in httpd.conf. httpd(8) now supports both mime.types flavours with or without semicolon at the end of the line (nginx- or apache-style). Discussed with many, with input from halex@ OK halex@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/25 08:29:18 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Simplify rm_from_pkg_scripts(); minus ten lines; no functional change; ok ajacoutot@. For non-trivial automated text editing in sh(1), thou shalt use sed(1). CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/25 08:29:49 Modified files: share/misc : Makefile Log message: Previosuly forgot the Makefile bit: add mime.types CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/08/25 08:31:22 Modified files: app/cwm : calmwm.h group.c xutil.c Log message: Since the flatting out of sc->group_names is only for setting NET_DESKTOP_NAMES, merge the helper into xu_ewmh_net_desktop_names, where we actually set the property. CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/25 08:36:10 Modified files: sbin/iked : dh.c iked.conf.5 parse.y Log message: Add support for DH groups 27-30 using the Brainpool curves which have previously been added to LibreSSL's libcrypto. ok markus@ mikeb@ CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/25 08:42:23 Modified files: sbin/isakmpd : dh.c dh.h Log message: Sync dh.[ch] from iked. The files are identical, so any change in either iked or isakmpd should be synced to the other daemon. The previous changes from iked include: plug two memory leaks, verify EC points and add the Brainpool curves. All tests in regress/sbin/isakmpd/dh passed OKAY. ok markus@ mikeb@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/08/25 08:46:08 Modified files: share/man/man4 : vmwpvs.4 Log message: add an example vmx config line ok dlg@ CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/25 09:15:29 Modified files: graphics/sxiv : Makefile distinfo Log message: switch to GH_* variables ok chrisz@ CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/25 09:17:24 Modified files: devel/py-liblarch: Makefile distinfo Log message: switch to GH_* variables ok chrisz@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/25 09:20:19 Modified files: sysutils/findlib: Makefile distinfo sysutils/findlib/pkg: PFRAG.native PLIST Added files: sysutils/findlib/patches: patch-src_bytes_Makefile sysutils/findlib/pkg: PFRAG.dynlink-native Removed files: sysutils/findlib/patches: patch-Makefile patch-configure patch-src_findlib_Makefile Log message: Upgrade findlib to 1.5.2. * Don't use MODULES = lang/ocaml, because with 4.02 we will need to build findlib without camlp4, which will depend on findlib. * Remove patches accepted upstream. * Add one patch from upstream to fix building without ocamlfind in path yet and respecting PREFIX. OK avsm@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/25 09:36:00 Modified files: usr.bin/ftp : fetch.c Log message: you broke the ramdisk builds... CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/25 09:39:38 Modified files: geo/osm-gps-map: Makefile Log message: another switch to GH_* vars CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/25 10:15:23 Modified files: graphics/opencolorio: Makefile distinfo Log message: use GH_* vars. ok pascal@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/25 10:18:07 Modified files: graphics/openimageio: Makefile distinfo Log message: use GH_* vars. ok pascal@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 10:27:01 Modified files: security/libtasn1: Makefile distinfo security/libtasn1/pkg: PLIST Log message: Update to libtasn1-4.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 10:27:25 Modified files: security/libgcrypt: Makefile distinfo Log message: Update to libgcrypt-1.6.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 10:27:57 Modified files: security/gnutls: Makefile distinfo security/gnutls/patches: patch-lib_x509_rfc2818_hostname_c Added files: security/gnutls/patches: patch-src_libopts_autoopts_h Log message: Update to gnutls-3.2.17. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/25 11:55:27 Modified files: regress/usr.sbin/syslogd: Client.pm Server.pm args-socket.pl funcs.pl Added files: regress/usr.sbin/syslogd: args-client-udp6-nodns.pl args-client-udp6.pl args-localhost.pl args-maxhostlen.pl args-maxloghostlen.pl args-maxportlen.pl args-server-udp4.pl args-server-udp6.pl Log message: Add tests for syslogd sending and receiving over IPv6 sockets. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/25 12:05:30 Modified files: usr.sbin/syslogd: privsep.c syslogd.c ttymsg.c Log message: Fix the gcc compiler warnings "comparison between signed and unsigned". Some checks got stricter. The (size_t) cast is only done, if the argument is not negative. OK henning@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/25 12:19:18 Modified files: usr.sbin/syslogd: privsep.c syslogd.c syslogd.h Log message: Allow to restrict syslogd to a protocol family with -4 and -6 command line switches. If the log server is an FQDN, DNS chooses wether to take the IPv4 or IPv6 route. Allow to prefix the log host with udp4:// or udp6:// to choose a protocol. OK henning@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 12:50:22 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Cope with some weird rc.conf.local file like "foobar" in pkg_scripts while "foobar_flags" is set to "NO"... Reparse deamon_flags at the end of add_flags() since they may have been modified by the function. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 13:01:26 Modified files: usr.sbin/rcctl : rcctl.sh Log message: For functions that take args, return immediately if no args is passed. Add/drop missing/unused local variables. no functionnal change CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/25 13:14:54 Modified files: app : Makefile Log message: Unlink xfs from the build. no objections from at least krw@, ajacoutot@, dcoppa@ CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/08/25 13:15:42 Modified files: etc/mtree : BSD.x11.dist Log message: No more /etc/X11/fs CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/25 13:16:37 Modified files: distrib/sets/lists/xbase: md.alpha md.amd64 md.armish md.armv7 md.aviion 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/xetc: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.zaurus Log message: sync CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 13:19:09 Modified files: print/poppler-data: Makefile distinfo print/poppler-data/pkg: PLIST Log message: Update to poppler-data-0.4.7. ok kili@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 13:19:42 Modified files: print/poppler : Makefile distinfo print/poppler/patches: patch-aclocal_m4 Log message: Update to poppler-0.26.4. ok kili@ (maintainer) CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/25 13:19:54 src/regress/sbin/iked Update of /cvs/src/regress/sbin/iked In directory cvs.openbsd.org:/tmp/cvs-serv19644/iked Log Message: Directory /cvs/src/regress/sbin/iked added to the repository CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/25 13:20:04 src/regress/sbin/iked/dh Update of /cvs/src/regress/sbin/iked/dh In directory cvs.openbsd.org:/tmp/cvs-serv8551/iked/dh Log Message: Directory /cvs/src/regress/sbin/iked/dh added to the repository CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/25 13:22:20 Added files: regress/sbin/iked: Makefile regress/sbin/iked/dh: Makefile dhtest.c Log message: Inspired by the previous brainpool addition, copy isakmpd's dh test to iked. Both daemons share the same dh implementation, but this makes it easier to test iked directly. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/25 13:32:29 Added files: regress/usr.sbin/syslogd: args-localhost-only4.pl args-localhost-only6.pl args-localhost-proto-udp4.pl args-localhost-proto-udp6.pl args-only4.pl args-only6.pl args-proto-invalid.pl args-proto-udp.pl args-proto-udp4-host6.pl args-proto-udp4-only6.pl args-proto-udp4.pl args-proto-udp6-host4.pl args-proto-udp6-only4.pl args-proto-udp6.pl Log message: Add tests where the IP address family has been chosen by -4 or -6 command line switch and udp4:// or udp6:// loghost prefix. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/25 14:15:28 Modified files: graphics/py-Pillow: Makefile distinfo graphics/py-Pillow/patches: patch-setup_py graphics/py-Pillow/pkg: PLIST-main Removed files: graphics/py-Pillow/patches: patch-Scripts_player_py Log message: Update to py-Pillow 2.5.3. https://pypi.python.org/pypi/Pillow/2.5.3 2.5.2 fixes CVE-2014-3589 and 2.5.3 fixes CVE-2014-3598. Went in a bulk build without fallout, ok ajacoutot@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/25 14:19:14 Modified files: usr.sbin/syslogd: privsep.c Log message: Call check_tty_name() and check_log_name() with the string size and don't access memory beyond. Make sure that the complete string "/dev/null" can be copied. OK henning@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/25 14:25:46 Modified files: usr.sbin/syslogd: syslog.conf.5 syslogd.8 Log message: Document the IPv4/IPv6 command line switches and protocol loghost prefixes. OK jmc@ henning@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/25 14:39:09 Modified files: x11/gnome/grilo-plugins: Makefile distinfo x11/gnome/grilo-plugins/pkg: PLIST Log message: update to grilo-plugins-0.2.13 CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 15:06:46 Modified files: usr.sbin/rcctl : rcctl.sh Log message: rc.d scripts are shell scripts and need to be sourced in svc_get_flags(). It's the only way to get daemon_flags in case it contains line continuation... We only need to do that for enable package scripts. original idea from Sebastien Marie discussed with, input from and ok schwarze@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/25 15:34:34 Modified files: usr.sbin/rcctl : rcctl.sh Log message: get rid of the tempfile in svc_default_enabled_flags(); feedback and ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/25 16:05:14 Modified files: sysutils/salt : Makefile sysutils/salt/patches: patch-salt_modules_openbsdservice_py Log message: rcctl(8) implementation committed upstream. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/25 17:15:37 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Base system special services have no flags, so move the test for them up front in add_flags(). This avoids unnecessary work, avoids setting bogus variables, and reduces the risk of screwing up things when changing the code. No functional change right now. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/26 01:03:31 Modified files: sysutils/ruby-facter: Makefile distinfo sysutils/ruby-facter/pkg: PLIST Removed files: sysutils/ruby-facter/patches: patch-lib_facter_partitions_rb patch-lib_facter_util_partitions_openbsd_rb patch-lib_facter_util_partitions_rb patch-lib_facter_virtual_rb Log message: - update to facter-2.2.0 * https://docs.puppetlabs.com/facter/2.2/release_notes.html CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/26 01:18:13 Modified files: graphics/colord: Makefile distinfo graphics/colord/patches: patch-configure patch-lib_colord_cd-icc-store_c patch-src_cd-main_c Log message: Update to colord-1.2.2. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/26 01:38:36 Modified files: sysutils/ruby-facter: Makefile Added files: sysutils/ruby-facter/patches: patch-lib_facter_processors_os_rb Log message: implement processors['speed'] CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/26 02:03:33 Modified files: security/sslScanner: Makefile Log message: drop MASTER_SITES. it's already set with GH_* CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/26 03:29:51 Modified files: sysutils/ruby-puppet/3: Makefile sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_service_openbsd_rb Log message: only do a restart if the service supports it; resort to stop/start otherwise CVSROOT: /cvs Module name: src Changes by: mikeb@cvs.openbsd.org 2014/08/26 05:01:22 Modified files: sys/dev/pci : if_bge.c if_em.c if_ix.c Log message: Revert part of the if_rxr diff that incorrectly moves RX ring tail index update code from the buf_get success path to the do it all the time code path. Tested by millert; ok dlg, deraadt CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/26 05:13:58 Modified files: usr.bin/mandoc : cgi.c msec.in Log message: Unify console and CGI section titles, bringing them closer to groff, is an attempt to reduce confusion for users switching between media and between different operating systems. Not using the groff title for section 4 is intentional, it is just too awful ("Kernel Interfaces Manual"), and the difference from sections 2 and 9 would be too hard to see. Positive feedback from at least deraadt@ millert@ bluhm@ jca@. Previously also agreed with the general direction: jmc@ Nick@. The title for 3p was polished by bluhm@. The existing mismatches were originally noticed by jsg@. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/26 05:32:57 Modified files: regress/usr.bin/mandoc/char/N: basic.out_ascii regress/usr.bin/mandoc/char/accent: combine.out_utf8 nocombine.out_ascii nocombine.out_utf8 utf8only.out_utf8 regress/usr.bin/mandoc/char/bar: man.out_ascii mdoc.out_ascii regress/usr.bin/mandoc/char/hyphen: man.out_ascii mdoc.out_ascii regress/usr.bin/mandoc/char/space: break.out_ascii eos-man.out_ascii eos.out_ascii esct-man.out_ascii esct-mdoc.out_ascii leading-man.out_ascii leading-mdoc.out_ascii multiple.out_ascii nobreak.out_ascii tab-man.out_ascii tab.out_ascii zerowidth.out_ascii regress/usr.bin/mandoc/char/unicode: man.out_utf8 mdoc.out_utf8 regress/usr.bin/mandoc/man/B: args.out_ascii regress/usr.bin/mandoc/man/BI: literal.out_ascii regress/usr.bin/mandoc/man/EX: args.out_ascii nested.out_ascii spacing.out_ascii regress/usr.bin/mandoc/man/HP: break.out_ascii literal.out_ascii macrotag.out_ascii manyargs.out_ascii spacing.out_ascii regress/usr.bin/mandoc/man/IP: empty.out_ascii literal.out_ascii longhead.out_ascii manyargs.out_ascii spacing.out_ascii width.out_ascii regress/usr.bin/mandoc/man/PD: args.out_ascii spacing.out_ascii regress/usr.bin/mandoc/man/PP: args.out_ascii empty.out_ascii regress/usr.bin/mandoc/man/RS: breaking.out_ascii broken.out_ascii empty.out_ascii literal.out_ascii lonelyRE.out_ascii nested.out_ascii noRE.out_ascii width.out_ascii regress/usr.bin/mandoc/man/SH: broken.out_ascii broken_eline.out_ascii empty_before.out_ascii noarg.out_ascii regress/usr.bin/mandoc/man/TH: baddate.out_ascii case.out_ascii emptydate.out_ascii isodate.out_ascii mdocdate.out_ascii nobody.out_ascii onlyyear.out_ascii regress/usr.bin/mandoc/man/TP: badarg.out_ascii double.out_ascii eof.out_ascii literal.out_ascii longhead.out_ascii macrotag.out_ascii manyargs.out_ascii sameline.out_ascii width.out_ascii regress/usr.bin/mandoc/man/TS: vspace.out_ascii regress/usr.bin/mandoc/man/UR: args.out_ascii noUE.out_ascii regress/usr.bin/mandoc/man/blank: afterSH.out_ascii afterSS.out_ascii line.out_ascii regress/usr.bin/mandoc/man/nf: args.out_ascii dupe.out_ascii indent.out_ascii userdef.out_ascii vert.out_ascii regress/usr.bin/mandoc/mdoc/Ad: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/An: break.out_ascii regress/usr.bin/mandoc/mdoc/Ap: eos.out_ascii middle.out_ascii regress/usr.bin/mandoc/mdoc/Aq: empty.out_ascii regress/usr.bin/mandoc/mdoc/Ar: font.out_ascii punct.out_ascii regress/usr.bin/mandoc/mdoc/At: invalid.out_ascii regress/usr.bin/mandoc/mdoc/Bd: badargs.out_ascii blank.out_ascii break.out_ascii broken.out_ascii centered.out_ascii empty.out_ascii nested.out_ascii offset-empty.out_ascii spacing.out_ascii unclosed.out_ascii regress/usr.bin/mandoc/mdoc/Bf: badargs.out_ascii break.out_ascii broken.out_ascii multiargs.out_ascii nest.out_ascii regress/usr.bin/mandoc/mdoc/Bk: badarg.out_ascii break.out_ascii inputlines.out_ascii lines.out_ascii synopsis.out_ascii regress/usr.bin/mandoc/mdoc/Bl: badargs.out_ascii bareIt.out_ascii bareTa.out_ascii break.out_ascii broken.out_ascii bullet.out_ascii column.out_ascii dash.out_ascii diag.out_ascii empty.out_ascii emptyhead.out_ascii emptyitem.out_ascii emptytag.out_ascii enum.out_ascii extend.out_ascii hang.out_ascii inset.out_ascii item.out_ascii multitag.out_ascii multitype.out_ascii nested.out_ascii noIt.out_ascii notype.out_ascii ohang.out_ascii tag.out_ascii unclosed.out_ascii regress/usr.bin/mandoc/mdoc/Brq: empty.out_ascii regress/usr.bin/mandoc/mdoc/Bx: args.out_ascii regress/usr.bin/mandoc/mdoc/Cd: eos.out_ascii font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Cm: basic.out_ascii font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/D1: spacing.out_ascii regress/usr.bin/mandoc/mdoc/Dd: badarg.out_ascii dupe.out_ascii late.out_ascii manarg.out_ascii order.out_ascii regress/usr.bin/mandoc/mdoc/Dl: spacing.out_ascii regress/usr.bin/mandoc/mdoc/Dq: empty.out_ascii regress/usr.bin/mandoc/mdoc/Dt: case.out_ascii dupe.out_ascii nobody.out_ascii order.out_ascii regress/usr.bin/mandoc/mdoc/Dv: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Em: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Eo: empty.out_ascii obsolete.out_ascii regress/usr.bin/mandoc/mdoc/Er: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Ev: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Ex: args.out_ascii noname.out_ascii nostd.out_ascii regress/usr.bin/mandoc/mdoc/Fd: break.out_ascii eos.out_ascii font.out_ascii regress/usr.bin/mandoc/mdoc/Fl: font.out_ascii multiarg.out_ascii noarg.out_ascii parsed.out_ascii punct.out_ascii regress/usr.bin/mandoc/mdoc/Fo: basic.out_ascii break.out_ascii eos.out_ascii font.out_ascii noarg.out_ascii obsolete.out_ascii section.out_ascii regress/usr.bin/mandoc/mdoc/Ft: font.out_ascii regress/usr.bin/mandoc/mdoc/Ic: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/In: break.out_ascii eos.out_ascii font.out_ascii regress/usr.bin/mandoc/mdoc/Lb: badargs.out_ascii break.out_ascii eos.out_ascii regress/usr.bin/mandoc/mdoc/Li: font.out_ascii punct.out_ascii regress/usr.bin/mandoc/mdoc/Lk: font.out_ascii link.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Ms: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Mt: font.out_ascii simple.out_ascii regress/usr.bin/mandoc/mdoc/Nd: hyph.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Nm: badNAME.out_ascii badNAMEuse.out_ascii break.out_ascii empty.out_ascii emptyNAME.out_ascii emptyNAMEuse.out_ascii font.out_ascii long.out_ascii punct.out_ascii regress/usr.bin/mandoc/mdoc/No: punct.out_ascii spacing.out_ascii regress/usr.bin/mandoc/mdoc/Ns: position.out_ascii punct.out_ascii regress/usr.bin/mandoc/mdoc/Oo: punct.out_ascii regress/usr.bin/mandoc/mdoc/Op: broken.out_ascii punct.out_ascii regress/usr.bin/mandoc/mdoc/Os: dupe.out_ascii late.out_ascii missing.out_ascii regress/usr.bin/mandoc/mdoc/Ox: keep.out_ascii regress/usr.bin/mandoc/mdoc/Pa: font.out_ascii punct.out_ascii regress/usr.bin/mandoc/mdoc/Pf: spacing.out_ascii regress/usr.bin/mandoc/mdoc/Pp: arg.out_ascii regress/usr.bin/mandoc/mdoc/Qq: empty.out_ascii regress/usr.bin/mandoc/mdoc/Rs: allch.out_ascii break.out_ascii three_authors.out_ascii regress/usr.bin/mandoc/mdoc/Rv: args.out_ascii noname.out_ascii nostd.out_ascii regress/usr.bin/mandoc/mdoc/Sh: badNAME.out_ascii before.out_ascii emptyNAME.out_ascii order.out_ascii subbefore.out_ascii regress/usr.bin/mandoc/mdoc/Sm: badarg.out_ascii noarg.out_ascii scope.out_ascii spacing-No.out_ascii spacing-Op.out_ascii regress/usr.bin/mandoc/mdoc/Sq: empty.out_ascii regress/usr.bin/mandoc/mdoc/St: badargs.out_ascii regress/usr.bin/mandoc/mdoc/Sx: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Sy: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Tn: font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Ux: eos.out_ascii spacing.out_ascii regress/usr.bin/mandoc/mdoc/Va: basic.out_ascii font.out_ascii noarg.out_ascii regress/usr.bin/mandoc/mdoc/Vt: child.out_ascii font.out_ascii noarg.out_ascii spacing.out_ascii regress/usr.bin/mandoc/mdoc/Xr: args.out_ascii regress/usr.bin/mandoc/mdoc/blank: comment.out_ascii line.out_ascii list.out_ascii regress/usr.bin/mandoc/roff/args: man.out_ascii mdoc.out_ascii roff.out_ascii regress/usr.bin/mandoc/roff/br: args.out_ascii regress/usr.bin/mandoc/roff/cc: basic.out_ascii regress/usr.bin/mandoc/roff/cond: before-Dd.out_ascii close.out_ascii ie.out_ascii if.out_ascii numeric.out_ascii strcmp.out_ascii regress/usr.bin/mandoc/roff/de: Dd.out_ascii Dd.out_ascii_opt TH.out_ascii TH.out_ascii_opt append.out_ascii escname.out_ascii indir.out_ascii regress/usr.bin/mandoc/roff/ds: append.out_ascii escname.out_ascii nested.out_ascii quoting.out_ascii regress/usr.bin/mandoc/roff/esc: B.out_ascii c.out_ascii f.out_ascii h.out_ascii ignore.out_ascii multi.out_ascii one.out_ascii two.out_ascii w.out_ascii z.out_ascii regress/usr.bin/mandoc/roff/ft: badargs.out_ascii regress/usr.bin/mandoc/roff/ig: basic.out_ascii regress/usr.bin/mandoc/roff/it: badarg.out_ascii double.out_ascii text.out_ascii regress/usr.bin/mandoc/roff/ll: basic.out_ascii regress/usr.bin/mandoc/roff/na: args.out_ascii regress/usr.bin/mandoc/roff/nr: argc.out_ascii escname.out_ascii eval.out_ascii int.out_ascii predef.out_ascii rr.out_ascii regress/usr.bin/mandoc/roff/ps: ignore.out_ascii regress/usr.bin/mandoc/roff/rm: basic.out_ascii regress/usr.bin/mandoc/roff/scale: horiz.out_ascii regress/usr.bin/mandoc/roff/sp: badargs-man.out_ascii badargs-mdoc.out_ascii negative.out_ascii regress/usr.bin/mandoc/roff/string: escape.out_ascii infinite.out_ascii name.out_ascii zerolength.out_ascii regress/usr.bin/mandoc/tbl: center.out_ascii numbers.out_ascii span.out_ascii vert.out_ascii Log message: inevitable churn caused by the section title change CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/26 05:42:27 Modified files: sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_service_openbsd_rb Log message: submitted upstream CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/26 06:22:04 Modified files: sysutils/salt : Makefile sysutils/salt/pkg: PLIST Added files: sysutils/salt/files: openbsd_sysctl.py Log message: Add a module to handle sysctl(8) values. CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/08/26 06:34:24 Modified files: usr.sbin/sensorsd: sensorsd.8 Log message: Don't single out ami(4) here; other RAID drivers support logical drive reporting too. OK jsing@ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/08/26 08:16:28 Modified files: net/arpd : Makefile news/plor : Makefile sysutils/pscpug: Makefile Log message: Drop USE_GROFF since groff and mandoc produce identical output. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/26 09:09:26 Modified files: sys/net : route.c sys/netinet : if_ether.c Log message: Revert the addition of broadcast addresses, it apparently also corrupts the tree. Found by millert@. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/26 09:51:14 Modified files: security/scanlogd: Makefile security/scanlogd/pkg: PLIST Added files: security/scanlogd/pkg: scanlogd.rc Log message: add rc script for scanlogd OK ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/26 10:28:43 Modified files: sysutils/salt : Makefile Added files: sysutils/salt/patches: patch-salt_modules_useradd_py Log message: Fix the useradd module to work with OpenBSD. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/26 11:33:26 src/usr.bin/openssl Update of /cvs/src/usr.bin/openssl In directory cvs.openbsd.org:/tmp/cvs-serv19925/openssl Log Message: Directory /cvs/src/usr.bin/openssl added to the repository CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/26 11:47:25 Modified files: usr.bin : Makefile usr.sbin : Makefile usr.sbin/ikectl: ikeca.c usr.sbin/pkg_add/OpenBSD: Paths.pm Added files: usr.bin/openssl: Makefile apps.c apps.h asn1pars.c ca.c ciphers.c cms.c crl.c crl2p7.c dgst.c dh.c dhparam.c dsa.c dsaparam.c ec.c ecparam.c enc.c engine.c errstr.c gendh.c gendsa.c genpkey.c genrsa.c nseq.c ocsp.c openssl.1 openssl.c passwd.c pkcs12.c pkcs7.c pkcs8.c pkey.c pkeyparam.c pkeyutl.c prime.c progs.h rand.c req.c rsa.c rsautl.c s_apps.h s_cb.c s_client.c s_server.c s_socket.c s_time.c sess_id.c smime.c speed.c spkac.c testdsa.h testrsa.h timeouts.h ts.c verify.c version.c x509.c Removed files: usr.sbin/openssl: Makefile openssl.1 lib/libssl/src/apps: apps.c apps.h asn1pars.c ca.c ciphers.c cms.c crl.c crl2p7.c dgst.c dh.c dhparam.c dsa.c dsaparam.c ec.c ecparam.c enc.c engine.c errstr.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 prime.c progs.h rand.c req.c rsa.c rsautl.c s_apps.h s_cb.c s_client.c s_server.c s_socket.c s_time.c sess_id.c smime.c speed.c spkac.c testdsa.h testrsa.h timeouts.h ts.c verify.c version.c x509.c Log message: Move openssl(1) from /usr/sbin/openssl to /usr/bin/openssl, since it is not a system/superuser binary. At the same time, move the source code from its current lib/libssl/src/apps location to a more appropriate home under usr.bin/openssl. ok deraadt@ miod@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/26 11:47:44 src/regress/usr.bin/openssl Update of /cvs/src/regress/usr.bin/openssl In directory cvs.openbsd.org:/tmp/cvs-serv13655/openssl Log Message: Directory /cvs/src/regress/usr.bin/openssl added to the repository CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/26 11:50:07 Modified files: regress/usr.bin: Makefile regress/usr.sbin: Makefile regress/lib/libcrypto/sha2: Makefile Added files: regress/usr.bin/openssl: Makefile README openssl.cnf test_client.sh test_server.sh testdsa.sh testenc.sh testrsa.sh Removed files: regress/usr.sbin/openssl: Makefile README openssl.cnf test_client.sh test_server.sh testdsa.sh testenc.sh testrsa.sh Log message: Update regress to follow openssl(1) move. CVSROOT: /cvs Module name: www Changes by: jsing@cvs.openbsd.org 2014/08/26 12:06:56 Modified files: faq : current.html Log message: Document the migration of openssl(1) from /usr/sbin to /usr/bin. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 12:38:49 Log message: Import mapcache 1.2.1. MapCache is a WMTS/TMS server that implements tile caching to speed up access to WMS layers. The primary objectives are to be fast and easily deployable, while offering the essential features (and more!) expected from a tile caching solution. ok ajacoutot@ sthen@ Status: Vendor Tag: landry Release Tags: landry_20140826 N ports/geo/mapcache/Makefile N ports/geo/mapcache/distinfo N ports/geo/mapcache/patches/patch-util_mapcache_seed_c N ports/geo/mapcache/pkg/DESCR N ports/geo/mapcache/pkg/PLIST N ports/geo/mapcache/pkg/mapcache.rc N ports/geo/mapcache/pkg/README No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 12:47:04 Log message: Import mapproxy 1.7.0. MapProxy is an open source proxy for geospatial data. It caches, accelerates and transforms data from existing map services and serves any desktop or web GIS client. It supports WMS-C, TMS and WMTS protocols. MapProxy is a tile cache, but also offers many new and innovative features like full support for WMS clients. ok ajacoutot@ sthen@ Status: Vendor Tag: landry Release Tags: landry_20140826 N ports/geo/mapproxy/Makefile N ports/geo/mapproxy/distinfo N ports/geo/mapproxy/pkg/PLIST N ports/geo/mapproxy/pkg/DESCR N ports/geo/mapproxy/patches/patch-setup_cfg N ports/geo/mapproxy/patches/patch-setup_py No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 12:47:52 Modified files: geo : Makefile Log message: +mapcache,mapproxy CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 13:00:31 Modified files: geo/geos : Makefile distinfo geo/geos/patches: patch-include_geos_platform_h_in patch-src_Makefile_in geo/geos/pkg : PLIST Log message: Update to geos 3.4.2. patch-include_geos_platform_h_in merged upstream, will disappear in next update. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 13:02:03 Modified files: geo/spatialite/libspatialite: Makefile distinfo geo/spatialite/libspatialite/patches: patch-src_Makefile_in geo/spatialite/libspatialite/pkg: PLIST Log message: Update to libspatialite 4.2.0. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 13:02:27 Modified files: geo/spatialite/freexl: Makefile distinfo geo/spatialite/freexl/pkg: PLIST Log message: update to freexl-1.0.0g CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 13:02:54 Modified files: geo/spatialite/gui: Makefile distinfo Log message: update to spatialite_gui 1.7.1 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 13:03:35 Modified files: geo/spatialite/librasterlite: Makefile distinfo Log message: update to librasterlite 1.1g CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/26 13:04:02 Modified files: geo/spatialite/tools: Makefile distinfo geo/spatialite/tools/pkg: PLIST Log message: update to spatialite-tools 4.2.0 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/08/26 13:16:53 Modified files: security/aide : Makefile Removed files: security/aide/patches: patch-config_h_in Log message: * Fix the build after OpenBSD has gained blkcnt_t. * Bump revision because the type of blkcnt_t has changed. * Drop unneeded USE_GROFF. ok benoit@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/26 13:17:46 Modified files: distrib/sets/lists/base: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: robert@cvs.openbsd.org 2014/08/26 13:33:48 Modified files: distrib/sets/lists/base: mi distrib/sets/lists/etc: mi distrib/sets/lists/man: mi etc : Makefile changelist newsyslog.conf rc rc.conf etc/mtree : 4.4BSD.dist share/man/man7 : hier.7 share/man/man8 : intro.8 ssl.8 Removed files: etc/rc.d : nginx Log message: usr.sbin CVSROOT: /cvs Module name: src Changes by: robert@cvs.openbsd.org 2014/08/26 13:35:34 Modified files: usr.sbin : Makefile Removed files: usr.sbin/nginx : CHANGES CHANGES.ru LICENSE Makefile.bsd-wrapper README README.OpenBSD configure usr.sbin/nginx/auto: define endianness feature have have_headers headers include init install make modules nohave options sources stubs summary unix usr.sbin/nginx/auto/cc: acc bcc ccc clang conf gcc icc msvc name owc sunc usr.sbin/nginx/auto/lib: conf make test usr.sbin/nginx/auto/lib/geoip: conf usr.sbin/nginx/auto/lib/google-perftools: conf usr.sbin/nginx/auto/lib/libatomic: conf make usr.sbin/nginx/auto/lib/libgd: conf usr.sbin/nginx/auto/lib/libxslt: conf usr.sbin/nginx/auto/lib/md5: conf make makefile.bcc makefile.msvc makefile.owc usr.sbin/nginx/auto/lib/openssl: conf make makefile.bcc makefile.msvc usr.sbin/nginx/auto/lib/pcre: conf make makefile.bcc makefile.msvc makefile.owc usr.sbin/nginx/auto/lib/perl: conf make usr.sbin/nginx/auto/lib/sha1: conf make makefile.bcc makefile.msvc makefile.owc usr.sbin/nginx/auto/lib/zlib: conf make makefile.bcc makefile.msvc makefile.owc patch.zlib.h usr.sbin/nginx/auto/os: conf darwin freebsd linux solaris win32 usr.sbin/nginx/auto/types: sizeof typedef uintptr_t value usr.sbin/nginx/conf: fastcgi.conf fastcgi_params koi-utf koi-win mime.types nginx.conf scgi_params uwsgi_params win-utf usr.sbin/nginx/contrib: README geo2nginx.pl usr.sbin/nginx/contrib/unicode2nginx: koi-utf unicode-to-nginx.pl win-utf usr.sbin/nginx/html: 50x.html index.html usr.sbin/nginx/man: nginx.8 nginx.conf.5 usr.sbin/nginx/src/core: nginx.c nginx.h ngx_array.c ngx_array.h ngx_buf.c ngx_buf.h ngx_conf_file.c ngx_conf_file.h ngx_config.h ngx_connection.c ngx_connection.h ngx_core.h ngx_cpuinfo.c ngx_crc.h ngx_crc32.c ngx_crc32.h ngx_crypt.c ngx_crypt.h ngx_cycle.c ngx_cycle.h ngx_file.c ngx_file.h ngx_hash.c ngx_hash.h ngx_inet.c ngx_inet.h ngx_list.c ngx_list.h ngx_log.c ngx_log.h ngx_md5.c ngx_md5.h ngx_murmurhash.c ngx_murmurhash.h ngx_open_file_cache.c ngx_open_file_cache.h ngx_output_chain.c ngx_palloc.c ngx_palloc.h ngx_parse.c ngx_parse.h ngx_proxy_protocol.c ngx_proxy_protocol.h ngx_queue.c ngx_queue.h ngx_radix_tree.c ngx_radix_tree.h ngx_rbtree.c ngx_rbtree.h ngx_regex.c ngx_regex.h ngx_resolver.c ngx_resolver.h ngx_sha1.h ngx_shmtx.c ngx_shmtx.h ngx_slab.c ngx_slab.h ngx_spinlock.c ngx_string.c ngx_string.h ngx_syslog.c ngx_syslog.h ngx_times.c ngx_times.h usr.sbin/nginx/src/event: ngx_event.c ngx_event.h ngx_event_accept.c ngx_event_busy_lock.c ngx_event_busy_lock.h ngx_event_connect.c ngx_event_connect.h ngx_event_mutex.c ngx_event_openssl.c ngx_event_openssl.h ngx_event_openssl_stapling.c ngx_event_pipe.c ngx_event_pipe.h ngx_event_posted.c ngx_event_posted.h ngx_event_timer.c ngx_event_timer.h usr.sbin/nginx/src/event/modules: ngx_aio_module.c ngx_devpoll_module.c ngx_epoll_module.c ngx_eventport_module.c ngx_kqueue_module.c ngx_poll_module.c ngx_rtsig_module.c ngx_select_module.c ngx_win32_select_module.c usr.sbin/nginx/src/http: ngx_http.c ngx_http.h ngx_http_busy_lock.c ngx_http_busy_lock.h ngx_http_cache.h ngx_http_config.h ngx_http_copy_filter_module.c ngx_http_core_module.c ngx_http_core_module.h ngx_http_file_cache.c ngx_http_header_filter_module.c ngx_http_parse.c ngx_http_parse_time.c ngx_http_postpone_filter_module.c ngx_http_request.c ngx_http_request.h ngx_http_request_body.c ngx_http_script.c ngx_http_script.h ngx_http_spdy.c ngx_http_spdy.h ngx_http_spdy_filter_module.c ngx_http_spdy_module.c ngx_http_spdy_module.h ngx_http_special_response.c ngx_http_upstream.c ngx_http_upstream.h ngx_http_upstream_round_robin.c ngx_http_upstream_round_robin.h ngx_http_variables.c ngx_http_variables.h ngx_http_write_filter_module.c usr.sbin/nginx/src/http/modules: ngx_http_access_module.c ngx_http_addition_filter_module.c ngx_http_auth_basic_module.c ngx_http_auth_request_module.c ngx_http_autoindex_module.c ngx_http_browser_module.c ngx_http_charset_filter_module.c ngx_http_chunked_filter_module.c ngx_http_dav_module.c ngx_http_degradation_module.c ngx_http_empty_gif_module.c ngx_http_fastcgi_module.c ngx_http_flv_module.c ngx_http_geo_module.c ngx_http_geoip_module.c ngx_http_gunzip_filter_module.c ngx_http_gzip_filter_module.c ngx_http_gzip_static_module.c ngx_http_headers_filter_module.c ngx_http_image_filter_module.c ngx_http_index_module.c ngx_http_limit_conn_module.c ngx_http_limit_req_module.c ngx_http_log_module.c ngx_http_map_module.c ngx_http_memcached_module.c ngx_http_mp4_module.c ngx_http_not_modified_filter_module.c ngx_http_proxy_module.c ngx_http_random_index_module.c ngx_http_range_filter_module.c ngx_http_realip_module.c ngx_http_referer_module.c ngx_http_rewrite_module.c ngx_http_scgi_module.c ngx_http_secure_link_module.c ngx_http_split_clients_module.c ngx_http_ssi_filter_module.c ngx_http_ssi_filter_module.h ngx_http_ssl_module.c ngx_http_ssl_module.h ngx_http_static_module.c ngx_http_stub_status_module.c ngx_http_sub_filter_module.c ngx_http_upstream_ip_hash_module.c ngx_http_upstream_keepalive_module.c ngx_http_upstream_least_conn_module.c ngx_http_userid_filter_module.c ngx_http_uwsgi_module.c ngx_http_xslt_filter_module.c usr.sbin/nginx/src/http/modules/perl: Makefile.PL nginx.pm nginx.xs ngx_http_perl_module.c ngx_http_perl_module.h typemap usr.sbin/nginx/src/mail: ngx_mail.c ngx_mail.h ngx_mail_auth_http_module.c ngx_mail_core_module.c ngx_mail_handler.c ngx_mail_imap_handler.c ngx_mail_imap_module.c ngx_mail_imap_module.h ngx_mail_parse.c ngx_mail_pop3_handler.c ngx_mail_pop3_module.c ngx_mail_pop3_module.h ngx_mail_proxy_module.c ngx_mail_smtp_handler.c ngx_mail_smtp_module.c ngx_mail_smtp_module.h ngx_mail_ssl_module.c ngx_mail_ssl_module.h usr.sbin/nginx/src/misc: ngx_cpp_test_module.cpp ngx_google_perftools_module.c usr.sbin/nginx/src/os/unix: ngx_aio_read.c ngx_aio_read_chain.c ngx_aio_write.c ngx_aio_write_chain.c ngx_alloc.c ngx_alloc.h ngx_atomic.h ngx_channel.c ngx_channel.h ngx_daemon.c ngx_darwin.h ngx_darwin_config.h ngx_darwin_init.c ngx_darwin_sendfile_chain.c ngx_errno.c ngx_errno.h ngx_file_aio_read.c ngx_files.c ngx_files.h ngx_freebsd.h ngx_freebsd_config.h ngx_freebsd_init.c ngx_freebsd_rfork_thread.c ngx_freebsd_rfork_thread.h ngx_freebsd_sendfile_chain.c ngx_gcc_atomic_amd64.h ngx_gcc_atomic_ppc.h ngx_gcc_atomic_sparc64.h ngx_gcc_atomic_x86.h ngx_linux.h ngx_linux_aio_read.c ngx_linux_config.h ngx_linux_init.c ngx_linux_sendfile_chain.c ngx_os.h ngx_posix_config.h ngx_posix_init.c ngx_process.c ngx_process.h ngx_process_cycle.c ngx_process_cycle.h ngx_pthread_thread.c ngx_readv_chain.c ngx_recv.c ngx_send.c ngx_setaffinity.c ngx_setaffinity.h ngx_setproctitle.c ngx_setproctitle.h ngx_shmem.c ngx_shmem.h ngx_socket.c ngx_socket.h ngx_solaris.h ngx_solaris_config.h ngx_solaris_init.c ngx_solaris_sendfilev_chain.c ngx_sunpro_amd64.il ngx_sunpro_atomic_sparc64.h ngx_sunpro_sparc64.il ngx_sunpro_x86.il ngx_thread.h ngx_time.c ngx_time.h ngx_udp_recv.c ngx_user.c ngx_user.h ngx_writev_chain.c rfork_thread.S usr.sbin/nginx/src/pcre: LICENCE config.h pcre.h pcre_chartables.c pcre_compile.c pcre_exec.c pcre_fullinfo.c pcre_globals.c pcre_internal.h pcre_newline.c pcre_ord2utf8.c pcre_study.c pcre_tables.c pcre_ucd.c pcre_valid_utf8.c pcre_xclass.c ucp.h Log message: remove nginx from the base system in favor of OpenBSD's own httpd(8) CVSROOT: /cvs Module name: www Changes by: robert@cvs.openbsd.org 2014/08/26 13:42:35 Modified files: faq : current.html Log message: add notes about nginx moving to ports CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/08/26 13:43:59 Modified files: www/nginx : Makefile Added files: www/nginx : distinfo www/nginx/patches: patch-conf_mime_types patch-conf_nginx_conf www/nginx/pkg : DESCR PFRAG.no-passenger PFRAG.passenger PLIST README nginx.rc Removed files: www/nginx : Makefile.inc www/nginx/devel: Makefile distinfo www/nginx/devel/patches: lua-lua-nginx-module_config patch-src_http_ngx_http_spdy_c www/nginx/devel/pkg: DESCR PLIST README enginx.rc www/nginx/stable: Makefile distinfo www/nginx/stable/patches: lua-lua-nginx-module_config www/nginx/stable/pkg: DESCR PFRAG.no-passenger PFRAG.passenger PLIST README enginx.rc Log message: - remove the devel nginx packages - apply chroot and other patches from the base system - update to 1.7.4 CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/08/26 13:48:06 Modified files: www/nginx : Makefile www/nginx/pkg : PLIST Log message: add @pkgpaths CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/26 13:58:25 Modified files: sysutils/ruby-facter: Makefile sysutils/ruby-facter/patches: patch-lib_facter_processors_os_rb Log message: report a unit (MHz or GHz) for the processor speed CVSROOT: /cvs Module name: src Changes by: robert@cvs.openbsd.org 2014/08/26 14:03:32 Modified files: usr.bin/htpasswd: htpasswd.1 usr.bin/mandoc : man.cgi.8 usr.bin/openssl: openssl.1 usr.sbin/slowcgi: slowcgi.8 Log message: remove nginx references CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/26 14:11:31 Modified files: distrib/sets/lists/base: mi distrib/sets/lists/etc: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/08/26 14:19:26 Modified files: . : Makefile distrib/miniroot: install.sub distrib/notes : m4.common distrib/sets : checkflist maketars distrib/sets/lists/base: mi distrib/sets/lists/etc: mi etc : Makefile Added files: distrib/sets : makeetcset Removed files: distrib/sets : makeflist Log message: Create etc set during 'make build' and embed it in base set to make it available during a regular install or upgrade so that it doesn't need to be independently fetched. Idea, directions and OK deraadt@ Feedback and Ok halex@ and aja@ CVSROOT: /cvs Module name: www Changes by: rpe@cvs.openbsd.org 2014/08/26 15:02:22 Modified files: faq : current.html Log message: Add move of openssl to TOC CVSROOT: /cvs Module name: www Changes by: rpe@cvs.openbsd.org 2014/08/26 15:16:10 Modified files: faq : current.html Log message: remove redundant entry about openssl move and revert TOC entry noted by dorian buettner at gmx.de, thanks CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/26 15:29:56 Modified files: usr.sbin/sysmerge: sysmerge.8 sysmerge.sh Log message: Fist shot at fixing sysmerge(8) with etc-in-base; note that it's still in transition state and the utility will get a lot of revamping in the near future. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/26 15:31:03 Modified files: www/webkit : Makefile distinfo www/webkit/patches: patch-Source_WTF_wtf_Platform_h patch-Source_WTF_wtf_dtoa_utils_h Log message: Update to webkit-2.4.5. ok landry@ CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2014/08/26 15:36:44 Modified files: distrib/alpha/iso: Makefile distrib/amd64/iso: Makefile distrib/hppa/iso: Makefile distrib/i386/iso: Makefile distrib/macppc/iso: Makefile distrib/sgi/iso: Makefile distrib/sparc/iso: Makefile distrib/sparc64/iso: Makefile distrib/vax/iso: Makefile Log message: no more exposed etc set CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/26 15:41:43 Modified files: sysutils/salt : Makefile sysutils/salt/patches: patch-salt_modules_useradd_py Log message: All patches have been pushed upstream. CVSROOT: /cvs Module name: src Changes by: florian@cvs.openbsd.org 2014/08/26 15:44:29 Modified files: sys/netinet6 : in6.c in6.h nd6_rtr.c Log message: Do not hand-roll all routers link local address. pointed out & OK bluhm@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/26 15:48:08 Modified files: share/man/man8 : ssl.8 Log message: sort SEE ALSO; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/26 15:50:38 Modified files: usr.bin/htpasswd: htpasswd.1 Log message: fix SEE ALSO; CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/26 16:39:09 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Simplify the function add_flags(). Do not validate input twice, scrap needless array, and avoid needless expensive function calls to svc_get_flags(), svc_default_enabled_flags(), _rc_parse_conf(), and resolve code duplication. No functional change. Feedback and OK ajacoutot@. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/26 17:01:52 Added files: devel/kdevplatform/patches: patch-plugins_filetemplates_CMakeLists_txt Log message: Fix missing UI files dependencies when building test program. Pure build file dependency patch, so no bump needed. Found by ajacoutot@ in a bulk build. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/26 17:08:45 Modified files: x11/kde4/libs : Tag: OPENBSD_5_5 Makefile Added files: x11/kde4/libs/patches: Tag: OPENBSD_5_5 patch-kdecore_auth_backends_polkit-1_Polkit1Backend_cpp Log message: Security fix for kdelibs 4.11 branch, CVE-2014-5033: The KAuth framework uses polkit-1 API which tries to authenticate using the requestors PID. This is prone to PID reuse race conditions. More details here: http://www.kde.org/info/security/advisory-20140730-1.txt okay jca@, "I trust you" naddy@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/26 17:14:27 Modified files: x11/kde4/libs : Makefile Added files: x11/kde4/libs/patches: patch-kdecore_auth_backends_polkit-1_Polkit1Backend_cpp Log message: Security fix for kdelibs 4.13 branch, CVE-2014-5033: The KAuth framework uses polkit-1 API which tries to authenticate using the requestors PID. This is prone to PID reuse race conditions. More details here: http://www.kde.org/info/security/advisory-20140730-1.txt CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/26 17:17:20 ports/x11/kde4/krfb/patches Update of /cvs/ports/x11/kde4/krfb/patches In directory cvs.openbsd.org:/tmp/cvs-serv9896/patches Log Message: Directory /cvs/ports/x11/kde4/krfb/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/26 17:22:02 Modified files: x11/kde4/krfb : Makefile Added files: x11/kde4/krfb/patches: patch-libvncserver_lzoconf_h patch-libvncserver_lzodefs_h patch-libvncserver_minilzo_c patch-libvncserver_minilzo_h Log message: Security fix for krfb 4.13 branch, CVE-2014-4607: krfb embeds libvncserver which embeds liblzo2, it contains various flaws that result in integer overflow problems. This commit actually updates bundled lzo library, as suggested by upstream. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/08/26 17:27:42 Modified files: x11/kde4/krfb : Tag: OPENBSD_5_5 Makefile Added files: x11/kde4/krfb/patches: Tag: OPENBSD_5_5 patch-libvncserver_lzoconf_h patch-libvncserver_lzodefs_h patch-libvncserver_minilzo_c patch-libvncserver_minilzo_h Log message: Security fix for krfb 4.11 branch, CVE-2014-4607: krfb embeds libvncserver which embeds liblzo2, it contains various flaws that result in integer overflow problems. This commit actually updates bundled lzo library, as suggested by upstream. testing and okay jca@, "I trust you" naddy@ CVSROOT: /cvs Module name: www Changes by: brad@cvs.openbsd.org 2014/08/26 17:28:19 Modified files: faq : current.html Log message: Also remove the rc.d script for BIND. From Jiri B CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/26 17:55:28 Modified files: sys/dev/pci : if_vmx.c Log message: dont base the mru on the mtu. unconditionally make it what the hardware can do (9k). implement the rxr ioctl while here. ok jsg@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/26 18:06:08 Modified files: usr.bin/mandoc : Makefile apropos.1 cgi.c main.c mandoc.1 mansearch.c mansearch.h Added files: usr.bin/mandoc : man.1 Removed files: usr.bin/mandoc : apropos.c Log message: Add an implementation of man(1) into the /usr/bin/mandoc binary and provide a unified set of command line options for mandoc(1), man(1), apropos(1), and whatis(1), each option doing the same for all four. Not adding any completely new options, only extending exiting ones from one tool to the others. New options are: * apropos & whatis -acfkw (in the past, these were man(1) only) * apropos & whatis -a -IOTW (in the past, mandoc(1) only) * mandoc -ac (in the past, man(1) only) * man -IOTW (in the past, mandoc(1) only) Before we can decide whether or not we want to replace src/usr.bin/man with this implementation, considerable bugfixing, testing, and performance measurements are needed, which i'd rather do in the tree than outside. Note that these bugs only affect the new man(1) mode, existing mandoc(1), apropos(1), and whatis(1) is fine. The new functionality in mandoc(1), apropos(1), and whatis(1) is fully enabled. To play with the new man(1), you can try: # mv /usr/bin/man /usr/bin/oman # ln -s /usr/bin/mandoc /usr/bin/man Positive feedback about the general direction from sthen@ and jmc@, and deraadt@ is not against it. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/26 18:22:26 Modified files: sys/sys : pool.h sys/kern : subr_pool.c Log message: deprecate the "item offset" handling. nothing uses it, so we can cut it out of the code to simplify things. ok mikeb@ CVSROOT: /cvs Module name: ports Changes by: gsoares@cvs.openbsd.org 2014/08/26 19:36:16 Modified files: sysutils/ggrep : Makefile distinfo sysutils/ggrep/pkg: PLIST Log message: update to 2.20 OK naddy@(maintainer) CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/08/26 20:10:24 Modified files: sys/arch/sgi/hpc: if_sq.c Log message: Remove redundant setting of if_mtu which ether_ifattach() already takes care of. ok dlg@ CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/26 23:07:37 Removed files: geo/qlandkarte : Makefile distinfo geo/qlandkarte/patches: patch-common_in patch-src_CCentralResources_cpp patch-src_CGarminRoute_h patch-src_CProjEckII_cpp patch-src_CProjMercDynamic_cpp patch-src_CProjMerc_cpp patch-src_CProjUTM_cpp patch-src_GeoMath_h patch-src_IProjection_h patch-src_src_pro geo/qlandkarte/pkg: DESCR PFRAG.shared PLIST Log message: Remove. It was terminated upstream a long time ago. Use qlandkartegt instead. OK landry@ and sebastia@. Maintainer mail bounces. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/26 23:09:24 Modified files: geo : Makefile Log message: -qlandkarte CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/26 23:54:15 Modified files: sys/dev/ic : gem.c Log message: rxr ioctl handling. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/27 00:46:49 Modified files: www/nginx : Makefile www/nginx/pkg : PLIST Removed files: www/nginx/pkg : README Log message: Drop out-dated README. ok robert@ CVSROOT: /cvs Module name: src Changes by: sebastia@cvs.openbsd.org 2014/08/27 00:51:35 Modified files: usr.sbin/user : user.c Log message: Add missing capability to handle new $2b version of blowfish password encryption for usermod and friends. OK millert@, seems reasonable for now tedu@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/27 00:58:00 Modified files: comms/mgetty+sendfax: Makefile comms/mgetty+sendfax/files: new_voice mail/courier-imap: Makefile mail/mutt : Makefile mail/sympa : Makefile mail/sympa/patches: patch-src_lib_confdef_pm security/stunnel: Makefile security/tinyca: Makefile security/tinyca/patches: patch-tinyca2 www/owncloud : Makefile www/owncloud/pkg: README www/phpldapadmin: Makefile Removed files: mail/mutt/patches: patch-smime_keys_pl security/stunnel/patches: patch-tools_Makefile_in www/phpldapadmin/patches: patch-lib_emuhash_functions_php Log message: Cope with openssl(1) move from /usr/sbin to /usr/bin ok landry@ CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/08/27 01:33:55 src/regress/sys/kern/setuid Update of /cvs/src/regress/sys/kern/setuid In directory cvs.openbsd.org:/tmp/cvs-serv3959/setuid Log Message: Directory /cvs/src/regress/sys/kern/setuid added to the repository CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/08/27 01:36:14 Added files: regress/sys/kern/setuid: Makefile setegid.c seteuid.c setgid.c setgid_child.c setgid_exec_inherit.c setgid_none.c setresgid.c setresgid_effective_exec.c setresgid_real_exec.c setresgid_saved_exec.c setresuid.c setresuid_effective_exec.c setresuid_real_exec.c setresuid_saved_exec.c setuid.c setuid_child.c setuid_exec_inherit.c setuid_none.c setuid_real_exec.c sgidexec.c sgidexec_inherit.c sgidexec_none.c suidexec.c suidexec_inherit.c suidexec_none.c setuid_regress.h Log message: Regression tests for setuid-and-friends. Thanks to djm@ for good suggestions. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/27 01:47:47 Modified files: devel/ocaml-camomile: Makefile distinfo devel/ocaml-camomile/pkg: PFRAG.native PLIST Added files: devel/ocaml-camomile/patches: patch-Camomile_Makefile_in Removed files: devel/ocaml-camomile/patches: patch-Makefile_in Log message: Upgrade ocaml-camomile to 0.8.5. Use cpp instead of the not available cppo. Cpp needs the directives without indent. Therefore remove the indent in post-extract. OK jca@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/27 01:54:22 Modified files: devel/ocaml-batteries: Makefile distinfo devel/ocaml-batteries/patches: patch-src_batUnix_mliv devel/ocaml-batteries/pkg: PFRAG.native PLIST Added files: devel/ocaml-batteries/patches: patch-Makefile patch-build_prefilter_ml patch-src_batPrintf_mliv patch-src_batPrintf_mlv Log message: Update ocaml-batteries to 2.2.0. Also include fixes from upstream to support OCaml 4.02 OK jca@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/27 02:05:17 Modified files: devel/ocaml-react: Makefile distinfo devel/ocaml-react/pkg: PLIST devel/ocaml-lwt: Makefile distinfo devel/ocaml-lwt/patches: patch-setup_ml devel/ocaml-lambda-term: Makefile distinfo devel/ocaml-lambda-term/pkg: PLIST devel/ocaml-zed: Makefile distinfo devel/ocaml-zed/pkg: PLIST devel/utop : Makefile distinfo Removed files: devel/ocaml-lambda-term/patches: patch-_oasis patch-_tags patch-myocamlbuild_ml patch-setup_ml patch-src_lTerm_unix_stubs_c Log message: Upgrade ocaml-react. Since it has a major api charge, all of its dependers need an upgrade, too. * react uses opam without findlib as build system. Therefore call ocamlbuild directly. And roll a custom do-install. * lwt will need camlp4. * zed has moved to github. * utop, too. * lambda-term, too. Also will it need camlp4. OK jca@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/27 02:26:05 Modified files: bin/ksh : c_sh.c Log message: promote "times" to posix special built-in; ok guenther CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/08/27 02:28:29 Modified files: geo/geos : Makefile geo/geos/pkg : PLIST Log message: Fix packaging by using DOXYGEN_ENCODE_PATH_STRIP=${WRKSRC} in the env when running doxygen. I hate you doxygen. Didnt package so no bump. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/27 03:02:26 Modified files: geo/qlandkartegt: Makefile Log message: - add @pkgpath for smooth updates from qlandkarte - add rcs id in readme - remove duplicated dependency ok landry@ CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/27 03:04:40 Modified files: devel/quirks : Makefile Log message: qlandkarte => qlandkartegt CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/08/27 03:35:14 Modified files: geo/qlandkartegt: Makefile geo/qlandkartegt/pkg: PLIST README Log message: missed changes for pkg/*. spotted by zhuk@, thanks! bump for safety CVSROOT: /cvs Module name: ports Changes by: daniel@cvs.openbsd.org 2014/08/27 03:44:59 Modified files: math/coq : Makefile distinfo math/coq/patches: patch-test-suite-Makefile Added files: math/coq/patches: patch-kernel_univ_ml Log message: Update to 8.4pl4. Compilation problem with ocaml 4.02 noted by chrisz@; fix taken from coq trunk. ok Yozo Toda (MAINTAINER) some time ago. ok chrisz@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/27 03:45:39 Modified files: net/mldonkey/stable: Makefile distinfo Added files: net/mldonkey/stable/patches: patch-src_utils_net_terminal_ml Removed files: net/mldonkey/stable/patches: patch-src_daemon_common_commonMessages_ml patch-src_daemon_driver_driverCommands_ml patch-src_daemon_driver_driverControlers_ml patch-src_utils_lib_gettext_ml4 patch-src_utils_lib_gettext_mli Log message: Update to 3.1.5. Fix one "string literal in comment" for upcoming OCaml 4.02 OK dcoppa@ CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/27 03:51:53 Modified files: usr.sbin/httpd : server.c Log message: Write all data before closing the server socket if the output buffer is not empty. This fixes a bug of short responses that could happen with large files or fcgi data on connections with a higher latency. OK florian@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/27 04:26:59 Modified files: sysutils/salt : Makefile Added files: sysutils/salt/patches: patch-salt_modules_bsd_shadow_py patch-salt_modules_disk_py patch-salt_modules_groupadd_py Log message: Fix and implement OpenBSD support in the following modules: bsd_shadow, disk, groupadd CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/27 04:28:57 Modified files: sbin/iked : Makefile dh.c dh.h iked.conf.5 ikev2.h parse.y regress/sbin/iked/dh: Makefile dhtest.c Added files: sbin/iked : smult_curve25519_ref.c Log message: Add support for Curve25519 using the public domain code that is found in OpenSSH. The "private use" DH group 1034 is based on the value that was picked by strongswan recently. OK mikeb@ markus@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/27 04:31:07 Modified files: geo/qlandkartegt: Makefile geo/qlandkartegt/pkg: README Log message: Apply README template. CVSROOT: /cvs Module name: src Changes by: daniel@cvs.openbsd.org 2014/08/27 04:36:55 Modified files: usr.sbin/mrouted: main.c Log message: c99 no longer allows implicit ints. make the declaration explicit. ok henning@ CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/27 04:46:53 Modified files: lib/libressl : ressl.h ressl_config.c ressl_internal.h ressl_server.c Log message: Add the API function ressl_config_set_ecdhcurve(config, name) to set a non-standard ECDH curve by name or to disable it by passing NULL. OK jsing@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/27 06:50:07 Modified files: geo/qlandkartegt: Makefile geo/qlandkartegt/pkg: PLIST Removed files: geo/qlandkartegt/pkg: README Log message: Drop useless and wrong README. ok sebastia@ (maintainer) CVSROOT: /cvs Module name: src Changes by: naddy@cvs.openbsd.org 2014/08/27 07:46:32 Modified files: etc : newsyslog.conf Log message: Add httpd default log files to the rotation. ok reyk@ (who suggested these lines a while ago) CVSROOT: /cvs Module name: src Changes by: florian@cvs.openbsd.org 2014/08/27 08:04:16 Modified files: distrib/miniroot: install.sh etc/examples : sysctl.conf etc : rc.conf lib/libc/gen : sysctl.3 sbin/sysctl : sysctl.8 sys/netinet : icmp6.h sys/netinet6 : icmp6.c in6_proto.c usr.sbin/rtsold: rtsold.8 rtsold.c Log message: Nuke net.inet6.icmp6.rediraccept and allow redirects on interfaces with autoconf enabled. If one is doing SLAAC one does already trust link local icmp6 so the policy for icmp6 redirects should be the same. pointed out by & OK bluhm@; OK henning@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/27 08:13:17 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Simplify examples handling. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/27 08:44:42 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: One less option. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/27 08:59:44 Modified files: usr.bin/openssl: apps.c apps.h rand.c Log message: Implement table-driven option parsing that allows an application to specify what its valid options are and where it wants them to be stored. This also allows for usage to be generated, almost for free, ensuring that the options and usage are automatically kept in sync. This will allow for a single option parsing implementation, rather than the current one-hand-rolled-option-parsing-and-random-usage-implementation per application. As a starting point, port the openssl(1) rand application to the new option parsing and usage (along with associated code clean up). With input from doug@. ok bcook@ doug@ CVSROOT: /cvs Module name: src Changes by: kspillner@cvs.openbsd.org 2014/08/27 09:22:40 Modified files: usr.bin/diff : diffreg.c Log message: Ensure diff -uw always produces valid output when one file doesn't end with a newline. Issue reported by guenther@. ok guenther@ CVSROOT: /cvs Module name: src Changes by: kspillner@cvs.openbsd.org 2014/08/27 09:27:20 Modified files: regress/usr.bin/diff: Makefile Added files: regress/usr.bin/diff: t14.1 t14.2 t15.1 t15.2 Log message: Add regression tests for diff -uw issue reported by guenther@. Ensure the '+' and '-' always appear in the first column of a newline in diff -uw output, even when one file doesn't end with a newline and the other file contains additional lines. ok guenther@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/27 09:51:41 Modified files: usr.bin/openssl: apps.h apps.c Log message: Add an option type that handles argument to integer conversion. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/27 09:54:02 Modified files: usr.bin/openssl: rand.c Log message: Reset the config struct before calling options_parse(), otherwise config options from the previous run stick in interactive mode. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/27 09:55:23 Modified files: usr.bin/openssl: prime.c Log message: Convert openssl(1) prime to the new options/usage handling. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/27 12:07:55 Modified files: net/p5-Net-DNS : Makefile distinfo net/p5-Net-DNS/pkg: PLIST Log message: Update p5-Net-DNS to 0.79. ok bluhm@ CVSROOT: /cvs Module name: src Changes by: kspillner@cvs.openbsd.org 2014/08/27 12:40:03 Modified files: usr.sbin/pkg_add: Makefile usr.sbin/pkg_add/OpenBSD/PackageRepository: HTTP.pm SCP.pm Added files: usr.sbin/pkg_add/OpenBSD/PackageRepository: Persistent.pm Removed files: usr.sbin/pkg_add/OpenBSD/PackageRepository: Persistant.pm Log message: Rename Persistant to Persistent. sure espie@ CVSROOT: /cvs Module name: src Changes by: kspillner@cvs.openbsd.org 2014/08/27 12:45:57 Modified files: regress/usr.sbin/pkg_add: check-sig Log message: Remove $_ usage that warns under Perl 5.18. Yep espie@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/27 14:36:17 Modified files: distrib/sets/lists/xetc: mi distrib/sets/lists/xbase: mi Log message: move fontconfig configuration files that don't change to xbase CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/27 17:50:45 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Disentangle svc_default_enabled_flags() and svc_get_flags(). This saves three expensive function calls in svc_default_enabled_flags(), two to _rc_parse_conf() and one to svc_get_flags(). No functional change. Feedback and ok ajacoutot@. CVSROOT: /cvs Module name: src Changes by: bcook@cvs.openbsd.org 2014/08/27 19:00:57 Modified files: lib/libcrypto/crypto: getentropy_linux.c Log message: preserve errno value on success. If getrandom returns a temporary failure, make sure errno is not polluted when it succeeds. Thanks to deraadt@ for pointing it out. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/27 19:36:10 Modified files: usr.bin/mandoc : term_ps.c Log message: I just noticed that -Tps writes "%%CreationDate:" headers. That's an unwelcome leak of potentially private information. Kill it with fire. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/27 21:49:59 Modified files: usr.bin/mandoc : st.in share/man/man7 : mdoc.7 Log message: Support .St -susv1 and .St -susv4. Illumos wants to use this, and it's illogical anyway to have -susv2 and -susv3 but not -susv4. CVSROOT: /cvs Module name: ports Changes by: rpointel@cvs.openbsd.org 2014/08/27 23:40:49 Modified files: devel/py-nose : Makefile distinfo Log message: update nose to 1.3.4. ok martynas (maintainer). CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 00:32:56 Modified files: sysutils/salt/patches: patch-salt_modules_bsd_shadow_py patch-salt_modules_disk_py patch-salt_modules_groupadd_py Log message: Everything has been merged uptream. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 00:52:57 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Consistency in conditionals; no functional change. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 01:53:07 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Simplify. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/28 02:09:39 Modified files: usr.sbin/slowcgi: slowcgi.8 Log message: fix previous, and add a SEE ALSO section for httpd; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/28 02:22:42 Modified files: usr.sbin/tcpdrop: tcpdrop.8 Log message: er, rehook httpd. here's a thought: if i just leave man pages alone, they will eventually come good. while here, remove some escape sequences; CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 04:26:21 Modified files: devel/xdg-utils: Makefile distinfo Added files: devel/xdg-utils/patches: patch-scripts_xdg-email_in patch-scripts_xdg-mime_in patch-scripts_xdg-open_in patch-scripts_xdg-screensaver_in patch-scripts_xdg-utils-common_in Removed files: devel/xdg-utils/patches: patch-scripts_xdg-desktop-menu patch-scripts_xdg-email patch-scripts_xdg-icon-resource patch-scripts_xdg-mime patch-scripts_xdg-open patch-scripts_xdg-screensaver patch-scripts_xdg-settings Log message: Update to xdg-utils-1.1.0rc2 + fixes from upstream. Committing now since these utilities tend to break after an update in very subtle ways... CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/28 07:37:41 Modified files: usr.bin/openssl: apps.c apps.h Log message: Add option handling for input/output formats. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/28 07:39:07 Modified files: usr.bin/openssl: apps.c apps.h Log message: Add option handling for ordered flags. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/28 07:51:38 Modified files: usr.bin/openssl: apps.c Log message: Ensure that a format option argument is a known specifier. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/28 07:55:19 Modified files: usr.bin/openssl: apps.c Log message: Given the usage option name/argument name width a few more characters. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/28 08:01:32 Modified files: usr.bin/openssl: crl.c Log message: Convert openssl(1) crl to new option/usage handling. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/28 08:15:28 Modified files: usr.bin/openssl: apps.c apps.h Log message: Add option handling with a callback function for argument processing. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/28 08:23:52 Modified files: usr.bin/openssl: asn1pars.c ca.c crl.c crl2p7.c dh.c dhparam.c dsa.c dsaparam.c ec.c ecparam.c genpkey.c genrsa.c nseq.c pkcs12.c pkcs7.c pkcs8.c pkey.c pkeyparam.c pkeyutl.c req.c rsa.c rsautl.c sess_id.c spkac.c ts.c verify.c x509.c Log message: openssl_setup() calls SSL_load_error_strings(), which happens to call ERR_load_crypto_strings() - as such, we do not need to call the same function from most of the applications. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/28 08:25:48 Modified files: usr.bin/openssl: genpkey.c pkcs8.c pkey.c pkeyparam.c pkeyutl.c rsautl.c Log message: OpenSSL_add_all_algorithms() is called from openssl_startup() - it does not need to also be called from some of the applications. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 08:51:16 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Drop check and tweak comment. with schwarze@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/28 11:08:33 Modified files: . : Makefile distrib/sets : Makefile distrib/sets/lists/xbase: mi distrib/sets/lists/xetc: mi Added files: distrib/sets : makexetc Log message: Move xetc set to xbase like etc in base. ok and a tweak by ajacoutot@ There are still some issues, they will be fixed in tree. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/28 11:11:19 Modified files: distrib/sets : Makefile Log message: Use a phony target to build xetc.tgz so that its gets rebuilt everytime CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/28 11:34:29 Modified files: app/xinit : configure.ac Log message: Reduce diffs with upstream. No functional change. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/28 11:34:57 Modified files: app/xinit : Makefile.in aclocal.m4 configure app/xinit/launchd: Makefile.in app/xinit/launchd/privileged_startx: Makefile.in app/xinit/launchd/user_startx: Makefile.in app/xinit/man : Makefile.in Log message: regen CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 11:43:21 Modified files: usr.sbin/sysmerge: sysmerge.8 sysmerge.sh Log message: Major sysmerge cleanup now that both etc and xetc sets are part of base. Expect more changes/cleanup/... in the near future. -S (signature) option is gone since we are not fetching sets anymore -s and -x are gone as well for obvious reasons Left is: usage: sysmerge [-bdp] I would appreciate feedback, *lots* of things have changed and there may be side effects I missed. Consider sysmerge as WIP for the time being. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 11:51:43 Modified files: print/foomatic-db-engine: Makefile print/foomatic-db-engine/pkg: README print/cups : Makefile print/cups/pkg : README-main Log message: README tweaks. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 13:02:19 Log message: Import cups-bjnp-1.2.2. cups-bjnp is a CUPS backend for Canon USB over IP protocol which adds functionality to some Canon printers to connect and print over the network. from maintainer Julian Andrej ok robert@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140828 N ports/print/cups-bjnp/Makefile N ports/print/cups-bjnp/distinfo N ports/print/cups-bjnp/patches/patch-configure N ports/print/cups-bjnp/patches/patch-bjnp-debug_c N ports/print/cups-bjnp/pkg/PLIST N ports/print/cups-bjnp/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 13:02:48 Modified files: print : Makefile Log message: +cups-bjnp CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/28 14:55:28 Modified files: usr.sbin/sysmerge: sysmerge.8 Log message: tweak AUTHORS; ok ajacoutot CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/28 16:09:00 Modified files: usr.sbin/sysmerge: sysmerge.8 Log message: Merge a paragraph. CVSROOT: /cvs Module name: www Changes by: brad@cvs.openbsd.org 2014/08/28 23:48:47 Modified files: faq : faq6.html Log message: Add otus(4), rsu(4), urtwn(4) and remove ray(4). The additions from Carlin Bingham. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/29 00:03:34 Modified files: usr.sbin/sysmerge: sysmerge.8 Log message: knock out double .Pp; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/29 00:09:35 Modified files: share/man/man7 : hier.7 Log message: update entry for /usr/share/sysmerge; ok ajacoutot CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 00:52:20 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Some cleanings, no functional change. CVSROOT: /cvs Module name: ports Changes by: dlg@cvs.openbsd.org 2014/08/29 00:56:48 Modified files: lang/php/5.4 : Makefile lang/php/5.4/patches: patch-ext_tidy_tidy_c Log message: port the fix for the tidy tidyReleaseDate vs tidyVersion segfault. basically ports/lang/php/5.3/patches/patch-ext_tidy_tidy_c r1.3 ok robert@ sthen@ CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/29 02:06:30 Modified files: share/misc : mime.types Log message: The image/x-ms-bmp extension is bmp, not mp. Found by Navan Carson; Thanks! CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/08/29 03:03:36 Modified files: usr.sbin/relayd: parse.y relay.c relayd.conf.5 relayd.h Log message: Implement consistent host hashing for relayd, based on work done by andre@ Re-add a randomized hash seed (which had apparently gotten inadvertently removed in the past). Allows for multiple relayd instances to be configured to forward traffic to the same host, falling back to the random seed when not explicitly configured to do so. ok reyk@ CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/08/29 04:51:39 Modified files: databases/puppetdb: Makefile databases/puppetdb/pkg: PLIST-main README-main puppetdb.rc Log message: Tweak puppetdb port to install multiple .ini files in the puppetdb/conf.d configuration directory. Update the README to the according changes and add a section about upgrading. Feedback, testing and OK jasper@ (MAINTAINER) CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/29 05:18:49 Modified files: openbgpd : manual.html Log message: -rfc1771, +rfc4271, per man page. From Rob Pierce, (rob at 2keys dot ca), thanks! CVSROOT: /cvs Module name: www Changes by: sebastia@cvs.openbsd.org 2014/08/29 05:39:18 Modified files: faq : current.html Log message: mention split of puppetdb configuration file with puppetdb-2.1.0p1 CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2014/08/29 06:01:41 Modified files: geo/qlandkartegt: Makefile distinfo geo/qlandkartegt/pkg: PLIST Added files: geo/qlandkartegt/patches: patch-CMakeLists_txt patch-src_CDeviceGarminBulk_cpp patch-src_CMakeLists_txt patch-src_CMouseMoveMap_cpp patch-src_CWptDB_cpp Log message: Update qlgt to 1.7.7 test, feedback and OK kirby@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/29 06:09:04 Modified files: sbin/newfs : newfs.8 Log message: mount_mfs does not require disklabel to be run; diff From: Navan Carson confirmed/ok mikeb CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/08/29 07:01:46 Modified files: usr.sbin/httpd : httpd.h server_fcgi.c server_file.c server_http.c Log message: Use two instead of one http descriptor for request and response. OK chrisz@ CVSROOT: /cvs Module name: www Changes by: sobrado@cvs.openbsd.org 2014/08/29 07:02:48 Modified files: . : 56.html Log message: OpenSSH 6.7 new features and bug fixes. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/08/29 07:24:29 Modified files: devel/gmake : Makefile Log message: gmake will use libguile when available during build. Therefore configure --without-guile. ok dcoppa@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/08/29 08:28:32 Modified files: devel/llvm : Makefile devel/llvm/patches: patch-tools_clang_lib_Driver_Tools_cpp Added files: devel/llvm/patches: patch-lib_Target_PowerPC_MCTargetDesc_PPCMCAsmInfo_cpp patch-lib_Target_Sparc_MCTargetDesc_SparcMCAsmInfo_cpp Removed files: devel/llvm/patches: patch-tools_clang_lib_Basic_Targets_cpp Log message: - Remove a local PowerPC patch we don't need. - A fix for the SPARC float handling. Adding the missing & to the field allows the backend feature flag to be passed back which it was not without it. - Add some patches to enable the integrated assembler on PowerPC / SPARC. I left these out before as I thought because Clang was not obeying this setting and had its own similar bits they were not necessary but turns out the backend has some code that does obey this setting. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 09:58:32 Modified files: sysutils/salt : Makefile sysutils/salt/patches: patch-salt_modules_useradd_py Added files: sysutils/salt/patches: patch-salt_states_user_py Log message: Implement login class support. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 10:19:17 Modified files: www/owncloud : Makefile distinfo www/owncloud/patches: patch-lib_private_util_php www/owncloud/pkg: PLIST Log message: Update to owncloud-7.0.2. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 11:17:22 Modified files: usr.sbin/rcctl : rcctl.8 Log message: Document the fact that 'enable' can also be used to modify flags even if the daemon is already enabled. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 12:05:39 Modified files: distrib/sets/lists/base: mi distrib/sets/lists/etc: mi etc : Makefile Added files: etc/examples : dhclient.conf Removed files: etc : dhclient.conf Log message: Move dhclient.conf(5) to examples. no objections from todd@ millert@ rpe@ CVSROOT: /cvs Module name: src Changes by: shadchin@cvs.openbsd.org 2014/08/29 14:09:09 Modified files: sys/dev/pckbc : pms.c Log message: Fix checking sync for old synaptics touchpad (ver 5.9) From Thierry Deval ok mpi@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/29 14:21:13 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Simplify append_to_pkg_scripts(), in particular avoid the expensive svc_is_enabled() and look at ${pkg_scripts} only, flags are not relevant to this function. "please commit" ajacoutot@ CVSROOT: /cvs Module name: src Changes by: todd@cvs.openbsd.org 2014/08/29 14:54:51 Modified files: distrib/sets/lists/base: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 15:03:34 Modified files: misc/hwdata : Makefile distinfo Log message: Update to hwdata-0.269. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/29 15:04:37 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Additional input validation: Error out on "rcctl enable daemon flags NO". Without this check, this "enable" command effectively disabled the daemon. "commit" ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 15:09:01 Modified files: misc/libosinfo : Makefile distinfo misc/libosinfo/pkg: PLIST Removed files: misc/libosinfo/patches: patch-data_oses_openbsd_xml_in Log message: Update to libosinfo-0.2.11. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/29 15:21:39 Modified files: sys/arch/hppa/hppa: autoconf.c sys/arch/hppa64/hppa64: autoconf.c Log message: Use the load average from averunnable.ldavg[] instead of bogus cp_time[] arithmetic to display the load average in leds 5-8 of 8 led systems. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/29 15:55:55 Modified files: regress/usr.sbin/syslogd: Makefile Syslogd.pm README Log message: Prepare for testing libevent in syslogd. Pass the EVENT_NO... environment variables over sudo into syslogd. Run the tests with the select(2) and poll(2) and kqueue(2) backend. Call "make libevent" for these tests. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/29 15:57:17 Modified files: regress/usr.sbin/syslogd: args-maxhostlen.pl args-maxloghostlen.pl args-maxportlen.pl args-proto-invalid.pl args-proto-udp.pl args-proto-udp4-host6.pl args-proto-udp4-only6.pl args-proto-udp4.pl args-proto-udp6-host4.pl args-proto-udp6-only4.pl args-proto-udp6.pl args-server-udp4.pl args-server-udp6.pl funcs.pl Log message: Make the syslogd regression tests more reliable. Other processes on the system may create log entries during the test run that show up in the log file. Ignore those additional lines. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 16:07:22 ports/misc/redshift/patches Update of /cvs/ports/misc/redshift/patches In directory cvs.openbsd.org:/tmp/cvs-serv10064/patches Log Message: Directory /cvs/ports/misc/redshift/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/29 16:07:38 Modified files: misc/redshift : Makefile distinfo misc/redshift/pkg: PLIST Added files: misc/redshift/patches: patch-src_gamma-drm_c patch-src_location-geoclue_c Log message: Update to redshift-1.9.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 01:22:56 Modified files: net/libaccounts-glib: Makefile distinfo net/libaccounts-glib/pkg: PLIST Added files: net/libaccounts-glib/patches: patch-libaccounts-glib_ag-provider_c Log message: Update to libaccounts-glib-1.16. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 01:30:58 Modified files: games/tuxpaint-config: Makefile distinfo games/tuxpaint-config/pkg: PLIST Log message: Update to tuxpaint-config-0.0.13. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 02:32:33 Modified files: games/tuxpaint-stamps: Makefile distinfo games/tuxpaint-stamps/pkg: PLIST Log message: Update to tuxpaint-stamps-20140823. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 02:33:39 Modified files: games/gcompris : Makefile distinfo games/gcompris/patches: patch-Makefile_in games/gcompris/pkg: PLIST Log message: Update to gcompris-14.07. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/30 02:48:23 Modified files: sys/kern : subr_prof.c Log message: Fix profiling (GPROF) build. CVSROOT: /cvs Module name: ports Changes by: miod@cvs.openbsd.org 2014/08/30 02:56:04 Modified files: mail/alpine : Makefile Added files: mail/alpine/patches: patch-pith_smime_c Log message: Remove RAND_egd tentacles in never-used code paths gcc 4 is smart enough to optimize away, but gcc 3 isn't. Bump VERSION. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 03:02:23 Modified files: x11/polkit-qt4 : Makefile distinfo x11/polkit-qt4/patches: patch-PolkitQt-1Config_cmake_in x11/polkit-qt4/pkg: PLIST Log message: Update to polkit-qt4-0.112.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 03:07:36 Modified files: net/h323plus : Makefile distinfo net/h323plus/patches: patch-configure net/h323plus/pkg: PLIST Log message: Update to h323plus-1.26.5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 03:13:16 Modified files: graphics/simple-scan: Makefile distinfo Log message: Update to simple-scan-3.12.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 03:20:42 Modified files: devel/harfbuzz : Makefile distinfo Log message: Update to harfbuzz-0.9.35. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/30 03:32:19 Modified files: sys/dev/usb : xhci.c Log message: Allow new devices to get an address when XHCI_DEBUG is defined. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/30 03:33:11 Modified files: sys/dev/usb : ehci.c ehcivar.h Log message: Rewrite how queue heads are inserted and removed from the asynchronous list. Use a queue head per xfer and no longer per pipe. Since queue heads are now setup when a transfer is submited we do not need to open the control pipe more than once. This also simplify transfer abortion. Tested by many, thanks! CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/30 03:37:15 Modified files: sys/arch/macppc/dev: smu.c Log message: Bump the fan limit and avoid a panic on my quad G5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 03:37:27 Modified files: graphics/libgphoto2: Makefile distinfo graphics/libgphoto2/patches: patch-libgphoto2_port_gphoto2_gphoto2-port-portability_h graphics/libgphoto2/pkg: PFRAG.shared PLIST Log message: Update to libgphoto-2.5.5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 03:37:50 Modified files: graphics/gphoto2: Makefile distinfo Log message: Update to gphoto-2.5.5. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/08/30 03:42:20 Modified files: sys/arch/macppc/dev: macintr.c openpic.c Log message: Don't panic when an illegal IRQ is passed to intr_{dis,}establish(). At least the device-tree for the second bge(4) on my PowerMac is not parsed correctly but we can live with that until the bug is fixed. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/08/30 03:48:23 Modified files: sys/dev/pci : if_oce.c Log message: let the mru always be what the chip can do, not what the mtu implies. tested by and ok mikeb@ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/08/30 03:52:13 Modified files: sys/dev/pci : if_lii.c if_et.c Log message: Set the MRU to a full size frame instead of basing it on the MTU. ok dlg@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 04:32:58 Modified files: www/bacula-web : Makefile distinfo www/bacula-web/pkg: PLIST Log message: SECURITY update to bacula-web-6.0.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 04:33:57 Modified files: www/bacula-web : Tag: OPENBSD_5_5 Makefile distinfo www/bacula-web/pkg: Tag: OPENBSD_5_5 PLIST Log message: SECURITY update to bacula-web-6.0.1. (XSS and SQL injection) CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/30 04:41:10 Modified files: sys/arch/amd64/amd64: disksubr.c sys/arch/i386/i386: disksubr.c Log message: Make sure we check for GPT in writedisklabel() if kernel is compiled with GPT support, for it would risk being overwritten otherwise. From Markus Mueller CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/30 04:44:02 Modified files: sys/kern : subr_disk.c sys/sys : disklabel.h Log message: Recognize EFI protective and system partitions. Do not put disklabel entries for the protective ones when creating a fake label, but do, for the system ones, so that we may eventually copy boot code to them. From Markus Mueller CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 06:29:08 Log message: Import appstream-glib-0.2.5. This library provides GObjects and helper methods to make it easy to read and write AppStream metadata. It also provides a simple DOM implementation that makes it easy to edit nodes and convert to and from the standardized XML representation. <...> ok jasper@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140830 N ports/devel/appstream-glib/distinfo N ports/devel/appstream-glib/Makefile N ports/devel/appstream-glib/pkg/DESCR N ports/devel/appstream-glib/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 06:29:40 Modified files: devel : Makefile Log message: +appstream-glib CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 06:30:11 Modified files: misc/appdata-tools: Makefile distinfo Log message: Update to appdata-tools-0.1.8. ok jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 06:33:56 Modified files: textproc/link-grammar: Makefile distinfo textproc/link-grammar/patches: patch-configure textproc/link-grammar/pkg: PLIST-main Added files: textproc/link-grammar/patches: patch-link-grammar_structures_h Log message: Update to link-grammar-5.1.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 06:47:08 Modified files: productivity/tryton/trytond: Makefile distinfo Log message: Update to trytond-3.2.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 06:47:20 Modified files: productivity/tryton/tryton: Makefile distinfo Log message: Update to tryton-3.2.3. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 06:48:09 Modified files: productivity/tryton/account: Makefile distinfo productivity/tryton/account/pkg: PLIST productivity/tryton/account_asset: Makefile distinfo productivity/tryton/account_asset/pkg: PLIST productivity/tryton/account_invoice: Makefile distinfo productivity/tryton/account_invoice/pkg: PLIST productivity/tryton/account_payment: Makefile distinfo productivity/tryton/account_payment/pkg: PLIST productivity/tryton/account_payment_sepa: Makefile distinfo productivity/tryton/ldap_authentication: Makefile distinfo productivity/tryton/project_invoice: Makefile distinfo productivity/tryton/project_invoice/pkg: PLIST productivity/tryton/stock: Makefile distinfo productivity/tryton/stock_supply: Makefile distinfo productivity/tryton/stock_supply/pkg: PLIST Log message: Update tryton modules to their latest release. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 07:17:48 Modified files: x11/xruskb : Makefile distinfo x11/xruskb/pkg : PLIST Log message: Install config under /usr/local/lib/X11/app-defaults instead of /etc/X11/app-default. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 07:18:26 Modified files: x11 : Makefile Log message: Build the motif FLAVOR of xruskb. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 07:29:36 Modified files: meta/gnome : Makefile meta/gnome/pkg : README-main Log message: Use rcctl(8) in the cheat sheet section. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 07:52:22 Modified files: distrib/sets/lists/base: mi distrib/sets/lists/etc: mi Log message: /etc/amd/master.sample is effectively an example file, so move it to base but keep the current location until we know how to handle subdirs under /etc/examples. ok rpe@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 08:07:45 Modified files: databases/puppetdb: Makefile distinfo databases/puppetdb/pkg: README-main Log message: update to puppetdb-2.2.0 CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/30 08:15:36 Modified files: games/manaplus : Makefile distinfo Log message: Update to 1.4.8.30 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 08:16:02 Modified files: sysutils/ruby-libvirt: Makefile sysutils/ruby-libvirt/pkg: PLIST Log message: and unbreak with ruby19; spotted by naddy@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 08:16:07 Modified files: databases/puppetdb: Makefile databases/puppetdb/pkg: README-main Log message: Document pg_trgm indexes procedure CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 08:40:09 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: DESTDIR is gone. from Nathanael Rensen, thanks! CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/30 08:42:05 Modified files: sys/arch/hppa/dev: sti_sgc.c sys/dev/ic : sti.c sys/dev/pci : sti_pci.c Log message: Fix format strings in STIDEBUG code. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 08:44:20 Modified files: usr.sbin/sysmerge: sysmerge.8 Log message: Indent. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/30 09:14:03 Modified files: usr.bin/openssl: apps.c apps.h Log message: Move the callback function pointer outside the opt union so that the option values are useable by the function. Also provide an option type that calls a function without consuming/passing an argument. CVSROOT: /cvs Module name: src Changes by: sobrado@cvs.openbsd.org 2014/08/30 09:33:50 Modified files: usr.bin/ssh : ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 ssh_config.5 sshd.8 Log message: improve capitalization for the Ed25519 public-key signature system. ok djm@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/08/30 09:59:43 Modified files: usr.bin/openssl: version.c Log message: Convert openssl(1) version to new option/usage handling. CVSROOT: /cvs Module name: src Changes by: sobrado@cvs.openbsd.org 2014/08/30 10:32:25 Modified files: usr.bin/ssh : sshd_config.5 Log message: typo. CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/08/30 10:34:33 Modified files: devel/py-py : Makefile devel/py-py/pkg: PLIST Log message: Fix spaces after MODPY_COMMENT in PLIST. Causes creation of dirs starting with a space in the python3 flavor. Spotted by, and OK ajacoutot@. Thanks. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 10:37:12 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: sm_warn() always returns 0. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 10:56:56 Modified files: devel/iso-codes: Makefile distinfo devel/iso-codes/pkg: PLIST Log message: update to iso-codes-3.55 CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/08/30 11:16:47 Modified files: devel/nagelfar : Makefile distinfo devel/nagelfar/patches: patch-nagelfar_tcl devel/nagelfar/pkg: PLIST Log message: Update to 1.2. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/08/30 11:19:39 Modified files: lang/eagle : Makefile Log message: Adjust for ALL_TEST_ENV. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/08/30 11:32:34 Modified files: devel/tklib : Makefile distinfo devel/tklib/pkg: PLIST Log message: Update to 0.6pl1. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/08/30 12:04:52 Modified files: usr.bin/mandoc : apropos.1 main.c man.1 mandoc.1 Log message: Introduce a man(1) -l option as an alias for mandoc -a. Basically, this does the same as man -l in Linux man-db. The point is that now all functionality of the combined tool is reachable from the man(1) command name: apropos = man -k, whatis = man -f, mandoc = man -cl. Originally suggested by Carsten dot Kunze at arcor dot de, current maintainer of the Heirloom Documentation Tools. While here, add various missing information to the usage() and to the manuals. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/30 14:03:43 Modified files: . : MODULES 3RDPARTY Log message: update CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/30 14:07:08 Modified files: . : 3RDPARTY Log message: fix xterm entry CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 14:24:31 Modified files: devel/mm : Makefile Log message: add mirror that doesn't reset connections most of the time CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 14:31:03 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Refactor sum checks; all the information we need is already available so not need to create sum files anymore (except in pkg mode). CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 14:33:27 Modified files: etc/rc.d : rc.subr Log message: Make it possible to pass a specific error code to _rc_err(). ok robert@ schwarze@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 14:37:46 Modified files: usr.sbin/rcctl : rcctl.sh Log message: When a service is not available, return ENOENT. Previous to this commit it was not possible to know whether a service existed without parsing the output of 'rcctl status' which is very expensive. req. by armani@ ok robert@ schwarze@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 15:30:23 Modified files: libexec/ld.so/sparc64: rtld_machine.c Log message: Make the handling of PLT entries above the 32k mark thread-safe. Also, make a comment not lie: use the V9 ISA's relative branch immediate instruction for short (with in 2^19 words) PLT branches. ok miod@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 15:34:02 Modified files: www/decss : Makefile distinfo Log message: update to decss-0.07 and switch to a versioned distfile CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 15:42:31 Modified files: sysutils/salt : Makefile sysutils/salt/files: openbsdrcctl.py Log message: Huge improvement to the rcctl service module. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 15:43:16 Modified files: www/py-tempita : Makefile distinfo www/py-tempita/pkg: PLIST Log message: update to py-tempita-0.5.2 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 15:54:08 Modified files: archivers/makeself: Makefile audio/mpegaudio: Makefile chinese/ttfm : Makefile devel/luapack : Makefile devel/py-protocols: Makefile devel/py-ruledispatch: Makefile fonts/zh-arphicttf: Makefile fonts/zh-bg5ps : Makefile games/oilwar : Makefile games/spatial : Makefile games/xgolgo : Makefile games/xmj : Makefile games/xneko : Makefile lang/ucblogo : Makefile misc/cbb : Makefile misc/pymissile : Makefile net/queso : Makefile security/antisniff: Makefile security/cgichk: Makefile security/l0phtcrack: Makefile www/pecl-chroot: Makefile Log message: Remove MASTER_SITES=${MASTER_SITE_BACKUP} which is already taken care of by bsd.port.mk CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 16:02:39 Modified files: www/urlwatch : Makefile distinfo Log message: update to urlwatch-1.17 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 16:11:33 Modified files: databases/ruby-hiera-file: Makefile Log message: fix maintainer name... CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/30 16:38:31 Modified files: databases : Makefile Added files: databases/mdbtools: Makefile Log message: don't reach directly into the subdirectory from the category Makefile CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 17:51:42 Modified files: lib/libpthread/man: pthread_create.3 Log message: Xr __tfork instead of fork CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/30 19:02:51 Modified files: gnu/lib/libiberty: Makefile.bsd-wrapper shlib_version gnu/lib/libiberty/include: hashtab.h Removed files: gnu/lib/libiberty/src: oldhashtab.c Log message: Now that gcc 2.95 is out of the tree, get rid of the old hash table interface it was the only user of. Bump major. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/30 19:04:01 Modified files: gnu/lib/libiberty/src: pexecute.c pexecute.txh Log message: Finally ``revert'' to the recent pexecute interface, now that we do not need to support gcc 2.95. Tested on gcc 3 and gcc 4 platforms, riding on the major bump. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 19:42:36 Modified files: include : unistd.h lib/libc/gen : signal.3 lib/libc : shlib_version lib/libc/sys : Makefile.inc accept.2 dup.2 pipe.2 recv.2 sigaction.2 socket.2 socketpair.2 sys/kern : kern_descrip.c sys_pipe.c syscalls.master uipc_socket.c uipc_syscalls.c uipc_usrreq.c sys/sys : domain.h socket.h un.h Log message: Add additional kernel interfaces for setting close-on-exec on fds when creating them: pipe2(), dup3(), accept4(), MSG_CMSG_CLOEXEC, SOCK_CLOEXEC. Includes SOCK_NONBLOCK support. ok matthew@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 19:47:17 Modified files: sys/sys : syscall.h syscallargs.h sys/kern : init_sysent.c syscalls.c Log message: regen CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/30 20:06:36 Log message: Import www/uget uGet is a lightweight and full-featured Download Manager. uGet allows you to download in multiple parallel streams for download acceleration, put files in a Download Queue, Pause & Resume downloads, Advanced Category Management, Browser Integration, Clipboard Monitoring, Batch Downloads, localized into 23 Languages, and many more features. ok juanfra@ edd@ Status: Vendor Tag: bcallah Release Tags: bcallah_20140830 N ports/www/uget/Makefile N ports/www/uget/distinfo N ports/www/uget/pkg/PLIST N ports/www/uget/pkg/DESCR N ports/www/uget/pkg/README N ports/www/uget/patches/patch-po_POTFILES_in N ports/www/uget/patches/patch-uget-gtk_UgSetting_c No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/08/30 20:07:12 Modified files: www : Makefile Log message: +uget CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 20:21:18 Modified files: include : stdlib.h lib/libc/gen : popen.3 popen.c posix_spawn.c posix_spawn_file_actions_addopen.3 lib/libc/stdio : Makefile.inc fdopen.c flags.c fopen.3 freopen.c mktemp.3 mktemp.c Log message: Add additional userland interfaces for setting close-on-exec on fds when creating them: mkostemp(), mkostemps(), the 'e' mode letter for fopen(), freopen(), fdopen(), and popen(). The close-on-exec flag will be cleared by the action created by posix_spawn_file_actions_adddup2(). Also, add support for the C11 'x' mode letter for fopen() and freopen(), setting O_EXCL when possibly creating files. Note: this requires kernel support for pipe2() and dup3()! ok millert@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 20:27:37 Modified files: sys/sys : socket.h lib/libc/net : Makefile.inc Added files: lib/libc/net : sockatmark.3 sockatmark.c Log message: Add sockatmark() ok millert@ manpage feedback jmc@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 22:02:08 Modified files: include : unistd.h lib/librthread : rthread.h lib/libc/sys : Makefile.inc Added files: lib/libc/sys : getthrid.2 Log message: Declare and document getthrid() indirectly prodded by krw@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 22:04:01 Modified files: include/arpa : inet.h Log message: inet_nsap_{addr,ntoa}() were removed on 2013/12/17 CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 22:04:38 Modified files: include : grp.h Log message: setgrfile() isn't implemented CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/30 22:06:37 Modified files: lib/libc/gen : __tfork_thread.3 Log message: They're thread IDs, not PIDs. The wording is a bit clunky, but closer to the truth CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/31 00:36:30 Modified files: lib/libc/stdio : fopen.3 mktemp.3 Log message: provide section numbers for xrs; CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 00:40:46 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Do not overwrite examplessum; use the one we are provided with. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/31 00:41:24 Modified files: lib/libc/sys : getthrid.2 Log message: tweaks; CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 00:52:46 Modified files: usr.sbin/rcctl : rcctl.8 Log message: Document that exit code 2 indicates a non-existent service. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 01:08:25 Modified files: usr.sbin/rcctl : rcctl.sh Log message: No need to update daemon_flags in the enviroment anymore since the recent change to append_to_pkg_scripts(). CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 01:31:26 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: When we are not running in pkg mode, /usr/share/sysmerge/examplessum should always be part of the temproot, so there's not need to check for its existence. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 01:35:52 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Only use the sum files corresponding to the mode we run in. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 01:59:58 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Simplify examples files handling. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 02:32:41 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: In pkg mode, warn if the directory we want to copy the @sample file into does not exist and is not a @sample because we have no knowledge of the required owner/group/mode so we cannot create it. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 03:20:06 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Make sysmerge(8) completely silent by default when no file is modified. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/31 03:31:55 src/lib/libc/uuid Update of /cvs/src/lib/libc/uuid In directory cvs.openbsd.org:/cvs.d/hack/miod/traba/src/lib/libc/uuid Log Message: Directory /cvs/src/lib/libc/uuid added to the repository CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/31 03:36:39 Modified files: include : Makefile lib/libc : Makefile.inc sys/sys : uuid.h Added files: include : uuid.h lib/libc/uuid : Makefile.inc uuid.3 uuid_compare.c uuid_create.c uuid_create_nil.c uuid_equal.c uuid_from_string.c uuid_hash.c uuid_is_nil.c uuid_stream.c uuid_to_string.c Log message: Add uuid support routines to libc. From FreeBSD via NetBSD via Bitrig via Markus Mueller. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 03:55:16 Modified files: devel/p5-Event : Makefile distinfo Log message: update to p5-Event-1.23 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 03:55:47 Modified files: devel/p5-Object-Realize: Makefile distinfo Log message: update to p5-Object-Realize-0.19 CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 04:44:37 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Add Ingo's copyright as per his request. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 04:48:53 Modified files: lang/coffeescript: Makefile distinfo lang/coffeescript/pkg: PLIST Log message: update to coffeescript-1.8.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 06:27:15 Modified files: sysutils/libvirt: Makefile distinfo sysutils/libvirt/patches: patch-src_Makefile_in patch-src_rpc_virnetsocket_c sysutils/libvirt/pkg: PLIST Log message: update to libvirt-1.2.7 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 06:27:17 Modified files: devel/libvirt-glib: Makefile distinfo devel/libvirt-glib/pkg: PLIST Log message: update to libvirt-glib-0.1.9 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 06:27:22 Modified files: sysutils/libvirt-python: Makefile distinfo Log message: update to libvirt-python-1.2.7 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 06:27:23 Modified files: sysutils/p5-Sys-Virt: Makefile distinfo sysutils/p5-Sys-Virt/pkg: PLIST Log message: update to p5-Sys-Virt-1.2.6 CVSROOT: /cvs Module name: src Changes by: tobiasu@cvs.openbsd.org 2014/08/31 07:40:03 Modified files: gnu/usr.bin/binutils/binutils: addr2line.c ar.c coffdump.c cxxfilt.c deflex.c dlltool.c dllwrap.c nlmconv.c nm.c objcopy.c objdump.c rclex.c readelf.c size.c srconv.c strings.c sysdump.c windres.c gnu/usr.bin/binutils/gas: as.c itbl-lex.c gnu/usr.bin/binutils/gprof: gprof.c gnu/usr.bin/binutils/include: libiberty.h gnu/usr.bin/binutils/ld: ldmain.c Log message: Backport @file support from binutils-2.17 @file allows reading command line arguments from a file. Gcc now uses this to pass very long arguments lists to ld. ok guenther@ miod@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/31 07:50:27 Modified files: lib/fontconfig/conf.d: Makefile Log message: Install relative symlinks in conf.d. Noticed by ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/08/31 08:15:56 Modified files: security/spiped: Makefile distinfo Removed files: security/spiped/patches: patch-lib_events_events_network_c Log message: Update spiped to 1.4.0. Includes code cleanup and bug fixes plus a new -g option to drop connections if another host is using -f. CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/08/31 08:21:12 Modified files: security/reop : Makefile distinfo Log message: Update to reop 2.1.0. "Newer, better, bolder. v2 is now ready to go I think. The encrypted message format is possibly more secure in some scenarios. For backwards compat, a -1 option is available." CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 08:54:01 Modified files: www/yaws : Makefile distinfo www/yaws/patches: patch-configure www/yaws/pkg : PLIST-main Log message: update to yaws-1.98 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 08:56:51 Modified files: sysutils/mcollective: Makefile distinfo sysutils/mcollective/pkg: PLIST Log message: update to mcollective-2.6.0 CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/08/31 09:51:49 Modified files: lang/tcltutor : Makefile distinfo lang/tcltutor/patches: patch-TclTutor_tcl Log message: Update to 3.0b7. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/31 10:52:26 Modified files: distrib/sets : makeflist makelocatedb maketars Removed files: distrib/sets : genlists nocreate Log message: Get rid of the 'nocreate' feature, unused for 6 years and stop building the xetcXX.tgz set CVSROOT: /cvs Module name: ports Changes by: shadchin@cvs.openbsd.org 2014/08/31 11:03:33 Modified files: editors/texmaker: Makefile distinfo editors/texmaker/patches: patch-latexeditor_h patch-texmaker_cpp patch-texmaker_pro editors/texmaker/pkg: PLIST Added files: editors/texmaker/patches: patch-texmakerapp_cpp Log message: Update to texmaker 4.3. CVSROOT: /cvs Module name: ports Changes by: schwarze@cvs.openbsd.org 2014/08/31 11:28:35 Log message: import textproc/gpresent The gpresent and piclink groff macros and the presentps PostScript postprocessor support the creation of PDF presentations. Without using the PAUSE macro, the macros can also be used to make slides. ok MAINTAINER pascal@ Status: Vendor Tag: schwarze Release Tags: schwarze_20140831 N ports/textproc/gpresent/Makefile N ports/textproc/gpresent/distinfo N ports/textproc/gpresent/pkg/PLIST N ports/textproc/gpresent/pkg/DESCR N ports/textproc/gpresent/patches/patch-presentps No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 11:46:12 Modified files: devel/spice-protocol: Makefile distinfo devel/spice-protocol/pkg: PLIST Log message: update to spice-protocol-0.12.7 CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/08/31 11:52:28 Modified files: textproc : Makefile Log message: + gpresent. tsk tsk tsk. CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2014/08/31 11:57:40 Modified files: lib/libSM/src : sm_genid.c Log message: Fix the HAVE_UUID_CREATE code now that its gets used: - fix temp declaration - use snprintf instread of strcpy() CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 13:16:53 Modified files: net/apache-activemq: Makefile distinfo net/apache-activemq/pkg: PLIST Log message: update to apache-activemq-5.10.0 CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/31 13:20:44 Modified files: sys/netinet6 : in6.h lib/libc/net : vars6.c Log message: Make the in6addr constant declarations and definitions consistent in kernel and user land. OK florian@ mpi@ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/08/31 13:24:45 Modified files: education/gtypist: Makefile distinfo Log message: maintenance update to 2.9.5 CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/31 13:58:53 Modified files: lib/libc/uuid : uuid_stream.c Log message: Fix incorrect behaviour by syncing with FreeBSD; reported by Jonas 'Sortie' Termansen, thanks! CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/31 13:59:18 Modified files: lib/libc/uuid : uuid_compare.c Log message: Sync with FreeBSD. No functional change but more readable code. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/31 13:59:35 Modified files: lib/libc/uuid : uuid.3 Log message: Don't .Xr uuidgen(1) yet. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/08/31 14:10:36 Modified files: distrib/miniroot: install.sub Log message: The xetc set is now part of xbase and not distributed separately anymore. Extract it from xbase during installation. OK ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/08/31 14:15:37 Modified files: www/pecl-chroot: Makefile Log message: revert previous, pecl.port.mk needs to be introduced to a cluebat; spotted by espie@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/08/31 14:15:54 Modified files: sys/kern : kern_uuid.c Log message: Sync enc/dec routines with libc. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/31 14:23:10 Modified files: lib/librthread : rthread_cancel.c shlib_version lib/libpthread/man: pthread_testcancel.3 Log message: accept4() should be a cancellation point. Update the list in the pthread_testcancel(3) manpage: several were missing. noted by miod@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/08/31 14:34:28 Modified files: lib/libc/uuid : uuid.3 Log message: no Pp needed before non-compact lists; CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/31 14:51:31 Modified files: usr.sbin/syslogd: syslogd.c Log message: Do not call free() on an array in the data section. Fortunately the code was not reached. No binary change. OK miod@ guenther@ CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/08/31 15:08:48 Modified files: sys/sys : buf.h sys/kern : vfs_bio.c Log message: replace LRU bufcache with something originally modelled after 2Q. this should provide a degree of scan resistance, and also serves as a midway point for further development of multi queue algorithms. i've tried to minimize the risk and degree of regressions. probably ok beck CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/08/31 15:23:34 Modified files: faq : upgrade55.html Log message: The problem with predicting the future is it is subject to change. Inspired by Daniel Jakots, though I went in a slightly different direction. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/08/31 16:11:43 Modified files: usr.sbin/syslogd: syslogd.c Log message: The reapchild() signal handler collects all children. This can be done easier by ignoring SIGCHLD. OK guenther@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/31 20:48:00 Modified files: libexec/spamd : spamd.8 Log message: Simplify the syslog.conf example: .info means that *and higher* ok beck@ CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/08/31 21:15:22 Modified files: devel/tcllib : Makefile distinfo devel/tcllib/patches: patch-installer_tcl patch-support_installation_actions_tcl devel/tcllib/pkg: PLIST Removed files: devel/tcllib/patches: patch-apps_pt Log message: Update to 1.16pl0. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/31 21:37:10 Modified files: sys/kern : kern_rwlock.c Log message: Add explicit membars, so that we can stop requiring rw_cas() to provide the magic. ok matthew@ dlg@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/31 21:39:15 Modified files: sys/arch/amd64/include: atomic.h Log message: Add implementations of atomic_{inc,dec,add,sub}_{int,long}() and atomic_{add,sub}_{int,long}_nv(), based on Solaris and translated through the mind of dlg@ Remove the 'memory' constraint from atomic_cas_{uint,ulong,ptr}() now that rw_{enter,exit}*() use membars. ok dlg@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/31 23:09:53 Modified files: include : unistd.h lib/libc/sys : readlink.2 libexec/ld.so/alpha: syscall.h libexec/ld.so/amd64: syscall.h libexec/ld.so/arm: syscall.h libexec/ld.so/hppa: syscall.h libexec/ld.so/i386: syscall.h libexec/ld.so/m88k: syscall.h libexec/ld.so/mips64: syscall.h libexec/ld.so/powerpc: syscall.h libexec/ld.so/sh: syscall.h libexec/ld.so/sparc: syscall.h libexec/ld.so/sparc64: syscall.h sys/compat/linux: syscalls.master sys/kern : syscalls.master Log message: Sync readlink(2) with IEEE Std 1003.1-2008. discussion, help and ok guenther@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/08/31 23:13:22 Modified files: sys/compat/linux: linux_syscall.h linux_syscallargs.h linux_syscalls.c linux_sysent.c sys/kern : init_sysent.c syscalls.c sys/sys : syscall.h syscallargs.h Log message: sync generated files CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/08/31 23:20:54 Modified files: sys/compat/linux: Makefile Log message: Make this consistent with sys/kern/Makefile: require the 'syscalls' target CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/09/01 00:45:47 Modified files: gnu/usr.bin/perl: patchlevel.h gnu/usr.bin/perl/cpan/libnet/Net/FTP: dataconn.pm Log message: apply fix from upstream to remedy RT 37700, which hardens the close() function ok millert@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/01 00:55:37 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Do not compare checksum of checksums... CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/01 01:29:19 Modified files: usr.bin/units : units.lib Log message: update currency exchange rates; CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/09/01 01:52:30 Modified files: sys/dev/ic : mpivar.h mpi.c Log message: move mpi(4) from workq to taskq ok dlg@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/01 02:13:02 Modified files: sys/dev/usb : ehci.c ehcivar.h Log message: Revert previous, it puts too much pressure on memory allocation as reported by Bryan Linton on bugs@. CVSROOT: /cvs Module name: ports Changes by: pea@cvs.openbsd.org 2014/09/01 02:42:01 Modified files: security/gnupg2: Makefile distinfo Log message: Update to 2.0.26 ok dcoppa@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/01 03:28:41 Modified files: net/wireshark : Makefile Log message: BROKEN-powerpc for relocation overflows CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/01 03:32:43 Modified files: usr.sbin/httpd : httpd.c httpd.h server_fcgi.c Log message: Replace the code to get the FastCGI Status header with a proper way to parse and write the headers using the http response descriptor. This allows to add other tweaks, like support for chunked encoding, later. OK florian@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/01 04:04:01 Modified files: sysutils/salt/patches: patch-salt_modules_bsd_shadow_py sysutils/salt : Makefile Log message: Add support for account and password expiration. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/01 04:15:31 Modified files: multimedia/gstreamer-0.10/plugins-gl: Makefile distinfo multimedia/gstreamer-0.10/plugins-gl/pkg: PLIST Log message: Update to gstreamer-plugins-gl-0.10.3. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/01 04:23:51 Modified files: net/bing : Makefile Log message: mirror distfile CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/01 04:41:55 Modified files: usr.sbin/pkg_add/OpenBSD: ArcCheck.pm Log message: be a wee bit more paranoid about file sizes. CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/01 05:29:15 Modified files: usr.sbin/pkg_add/OpenBSD: Ustar.pm Log message: @newuser and @newgroup won't necessarily be on the machine during pkg_create, so fake uid/gid 0 if they're not. (removes some warning message) CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/01 06:22:38 Modified files: usr.sbin/httpd : httpd.conf.5 Log message: remove Xr, but not the reference, to nginx, after some discussion with reyk; CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/01 06:28:11 Modified files: usr.sbin/httpd : server_fcgi.c Log message: Don't pass the local buffer array by reference. OK florian@ CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/01 07:02:25 Modified files: usr.bin/bgplg : bgplg.8 Log message: Replace the obsolete nginx example with an httpd(8) example. ok jmc@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/01 07:03:40 Modified files: devel/ocaml-net: Makefile distinfo devel/ocaml-net/pkg: PFRAG.native PFRAG.shared PLIST Removed files: devel/ocaml-net/pkg: PFRAG.pcre PFRAG.pcre-native Log message: Upgrade to 3.7.5 This will work with OCaml 4.02. Always use -enable-pcre, because Netstring_str will now use the builtin Str module, while Netstring_pcre will use ocaml-pcre. ok avsm@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/01 07:07:51 Modified files: devel/utop : Makefile distinfo devel/utop/pkg : PLIST Removed files: devel/utop/pkg : README Log message: Upgrade to 1.15 the bar-completion with the default Meta-Tab binding seems to work now. Therefore remove the README. ok avsm@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/01 07:26:29 Modified files: lib/libevent : event.c Log message: The libevent event_log() function called by event_msgx() adds a new line itself. Do not print a double new line when EVENT_SHOW_METHOD is set. OK nicm@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/01 07:36:04 Modified files: graphics/py-Pillow: Tag: OPENBSD_5_5 Makefile Added files: graphics/py-Pillow/patches: Tag: OPENBSD_5_5 patch-PIL_IcnsImagePlugin_py Log message: Security fix for CVE-2014-3589 CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/01 08:21:06 Modified files: usr.bin/openssl: apps.c Log message: Improve option usage output. If the option/argument string exceeds the given width, add a hanging indent prior to displaying the description. Also, if the description includes newlines, wrap and indent for each newline so that the indentation is correctly maintained. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/01 08:26:01 Modified files: usr.bin/openssl: ecparam.c Log message: Convert ecparam to new option/usage handling. CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/01 08:52:52 Modified files: net/zabbix : Makefile distinfo net/zabbix/patches: patch-configure Log message: update to 2.2.6 ; patch from Mark Patruck CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/01 08:56:12 Modified files: sysutils/salt : Makefile Added files: sysutils/salt/patches: patch-salt_modules_mount_py Log message: Implement OpenBSD support to the mount module. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/01 09:11:11 Modified files: misc/redshift : Makefile Log message: Missing BUILD_DEPENDS. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/01 10:02:06 Modified files: sys/dev/usb : if_urtw.c if_urtwreg.h Log message: Set the configuration number and get the interface handle in attach(), like urtwn(4) does, to prevent a null dereference of the configuration descriptor. Issue reported and fix tested by Ludovic Coues on misc@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/01 10:31:57 Modified files: productivity/calcurse: Makefile distinfo productivity/calcurse/pkg: PLIST Log message: Update to calcurse-3.2.1. CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/09/01 10:36:04 Modified files: net/wireshark : Makefile Log message: Use -Wl,--relax to unbreak on powerpc. ok landry@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/01 12:01:55 Modified files: usr.sbin/rcctl : rcctl.sh Log message: Fix evil typo. from wbyte via Bryan Steele CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/01 12:04:58 Modified files: app/cwm : calmwm.h group.c mousefunc.c Log message: Merge group_menu into mousefunc_menu_group. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/01 12:17:32 Modified files: app/cwm : kbfunc.c mousefunc.c Log message: add explicit paran and drop some empty lines bringing like functions closer CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/01 14:07:26 Modified files: www/tt-rss : Makefile distinfo www/tt-rss/pkg : PLIST Log message: Update to tt-rss 1.13. Based on a mailer-mangled diff from Atanas Vladimirov, thanks! CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/01 14:19:12 Modified files: lang/seed7 : Makefile Log message: BROKEN-hppa = SIGILL during build CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/09/01 14:54:38 Modified files: usr.bin/openssl: Makefile ca.c enc.c s_client.c s_time.c Log message: Enable -Wshadow in openssl(1) and fix a few shadow warnings. ok jsing@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/09/01 14:58:42 Modified files: usr.sbin/smtpd : queue_api.c Log message: Close fd if fdopen fails ok gilles@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/01 15:30:39 Modified files: devel/iso-codes: Makefile distinfo devel/iso-codes/pkg: PLIST Log message: update to iso-codes-3.56 CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/09/01 15:50:18 Modified files: usr.bin/tmux : client.c cmd-list.c cmd-load-buffer.c cmd-new-window.c cmd-queue.c cmd-set-option.c cmd-split-window.c cmd-wait-for.c grid.c paste.c screen.c server-client.c tmux.h window-copy.c Log message: Various minor style and spacing nits. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/01 15:55:25 Modified files: cad/xcircuit : Makefile distinfo Removed files: cad/xcircuit/patches: patch-files_c Log message: Update to 3.7.57. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/09/01 15:58:41 Modified files: usr.bin/tmux : cmd-wait-for.c server.c tmux.h Log message: Wake up any clients waiting with the wait-for command when the server exits. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/09/01 16:00:42 Modified files: usr.bin/tmux : tmux.1 Log message: Fix typo (paneas -> panes). CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/01 16:45:11 Modified files: usr.bin/mandoc : main.c mansearch.c mansearch.h Log message: In man(1) mode, change to the right directory before starting the parser, just like traditional man(1) does, such that .so links have a chance to work. After this point, we don't need the current directory for anything else before exit, so we don't need to worry about getting back and we can safely ignore failure. This lets man(1) find more Xenocara manuals, but not all of them yet. Other issues remain that need to be fixed, too. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/09/01 17:15:53 Modified files: devel : Makefile Log message: Unhook ocamlnet,pcre. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/01 17:47:56 Modified files: usr.bin/mandoc : mandocdb.c Log message: When makewhatis(8) finds an .so link after the manual being pointed to has already been processed, add the file names to the names table, too, not just to the mlinks table. This fixes a bug where apropos(1) and the new man(1) wouldn't find some of the Xenocara manuals via some of their .so links. After rebuilding, run "makewhatis /usr/X11R6/man" or just wait for weekly(8). CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/01 18:21:00 Modified files: lib/libc/gen : posix_spawn.c Log message: Fix previous commit: fd wasn't set in the FAE_DUP2 case CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/01 18:26:30 Modified files: regress/usr.sbin/syslogd: Makefile Proc.pm Syslogd.pm args-client-udp4-nodns.pl args-client-udp4.pl args-client-udp6-nodns.pl args-client-udp6.pl args-localhost-only4.pl args-localhost-only6.pl args-localhost-proto-udp4.pl args-localhost-proto-udp6.pl args-localhost.pl args-maxportlen.pl args-only4.pl args-only6.pl args-proto-udp.pl args-proto-udp4.pl args-proto-udp6.pl args-server-udp4.pl args-server-udp6.pl args-socket.pl funcs.pl syslogd.pl Added files: regress/usr.sbin/syslogd: args-sighup-config.pl args-sighup-privsep.pl args-sighup.pl args-sigpipe.pl args-sigterm.pl Log message: Add tests that run the syslogd signal handlers. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 00:08:00 Modified files: x11/xfce4/libxfcegui4: Makefile Log message: Force disabling gtk-doc; otherwise it breaks if configure picks it up and dpb removes it. CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2014/09/02 00:39:22 Modified files: games/scummvm : Makefile Log message: scummvm 1.7.0 switched from a builtin jpeg decoder to libjpeg. Add the missing libjpeg dep, problem found by espie@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 01:50:44 Modified files: devel/ninja : Makefile distinfo Log message: Update to ninja-1.5.1 bulk build && ok landry@ kde build && ok zhuk@ ok matthew@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 02:01:29 Modified files: www/tomcat/v7 : Makefile distinfo www/tomcat/v7/pkg: PLIST-examples PLIST-main Log message: Update to 7.0.55 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 02:11:46 Modified files: databases/redis: Makefile distinfo databases/redis/patches: patch-deps_Makefile patch-redis_conf patch-src_Makefile patch-src_scripting_c Log message: Update to redis-2.8.14 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 02:33:59 Modified files: audio/mpd : Makefile distinfo audio/mpd/patches: patch-Makefile_in Removed files: audio/mpd/patches: patch-src_system_ByteOrder_hxx Log message: Bugfix update to mpd-0.18.13 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 02:37:53 Modified files: geo/spatialite/libspatialite: Makefile geo/spatialite/libspatialite/pkg: PLIST Log message: @comment lib/mod_spatialite.la and bump REVISION. prodded by a comment from ajacoutot@ on another upcoming port - since mod_spatialite.so is a module, we dont need to install the libtool archive. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 02:41:43 Modified files: sysutils/salt : Makefile Added files: sysutils/salt/patches: patch-salt_modules_postgres_py Log message: Fix the postgres module on OpenBSD. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 02:44:16 Modified files: audio/ncmpc : Makefile distinfo audio/ncmpc/patches: patch-configure patch-src_colors_c patch-src_screen_c Log message: Update to ncmpc-0.24 CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/02 02:47:36 Log message: Import lang/ocaml-camlp4, which is not included with OCaml 4.02 anymore. ok avsm@ Status: Vendor Tag: chrisz Release Tags: chrisz_20140902 N ports/lang/ocaml-camlp4/distinfo N ports/lang/ocaml-camlp4/Makefile N ports/lang/ocaml-camlp4/pkg/PFRAG.native N ports/lang/ocaml-camlp4/pkg/DESCR N ports/lang/ocaml-camlp4/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/02 02:49:53 Log message: Import lang/ocaml-camlp4 which is no longer included with OCaml 4.02 ok avsm@ Status: Vendor Tag: chrisz Release Tags: chrisz_20140902 U ports/lang/ocaml-camlp4/distinfo U ports/lang/ocaml-camlp4/Makefile U ports/lang/ocaml-camlp4/pkg/PFRAG.native U ports/lang/ocaml-camlp4/pkg/DESCR U ports/lang/ocaml-camlp4/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 02:56:23 Modified files: audio/pianobar : Makefile Added files: audio/pianobar/patches: patch-src_player_c Log message: Fix volume control with newer FFmpeg CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/02 02:59:43 Modified files: lang : Makefile Log message: Add lang/ocaml-camlp4 which is no longer included with OCaml 4.02 ok avsm@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 03:14:45 Modified files: sysutils/salt : Makefile Added files: sysutils/salt/patches: patch-salt_modules_timezone_py Log message: Fix the timezone module on BSDs. CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/02 03:23:13 Modified files: games/xkobo : Makefile Added files: games/xkobo/patches: patch-enemies_h Log message: work-around addition of pipe2() in unistd.h CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 03:24:10 Modified files: www/php-predis : Makefile distinfo www/php-predis/pkg: PLIST Log message: Update to Predis-1.0.0 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 03:24:24 Log message: Import librasterlite2 1.0.0rc0. librasterlite2 is an open source library that stores and retrieves huge raster coverages using a SpatiaLite DBMS. It doesnt conflict with the existing librasterlite. with tweaks from and ok ajacoutot@ Status: Vendor Tag: landry Release Tags: landry_20140902 N ports/geo/spatialite/librasterlite2/Makefile N ports/geo/spatialite/librasterlite2/distinfo N ports/geo/spatialite/librasterlite2/patches/patch-src_Makefile_in N ports/geo/spatialite/librasterlite2/pkg/DESCR N ports/geo/spatialite/librasterlite2/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/02 03:24:45 Modified files: devel/coccinelle: Makefile devel/ocaml-bitstring: Makefile devel/ocaml-camomile: Makefile devel/ocaml-lambda-term: Makefile devel/ocaml-lwt: Makefile devel/ocaml-net: Makefile devel/ounit : Makefile devel/utop : Makefile lang/ocaml : Makefile distinfo ocaml.port.mk lang/ocaml/patches: patch-configure lang/ocaml/pkg : PFRAG.native-main PLIST-main net/mldonkey/stable: Makefile productivity/wyrd: Makefile sysutils/findlib: Makefile sysutils/findlib/pkg: PFRAG.dynlink-native PFRAG.native PLIST textproc/ocaml-text: Makefile x11/lablgtk2 : Makefile Added files: lang/ocaml/patches: patch-asmrun_signals_osdep_h Removed files: lang/ocaml/pkg : DESCR-camlp4 DESCR-labltk PFRAG.native-camlp4 PFRAG.native-labltk PFRAG.shared-labltk PLIST-camlp4 PLIST-labltk Log message: Upgrade OCaml to 4.02. Since camlp4 is now a seperate port, add / change BUILD_DEPENDS for all ports using camlp4. Findlib is changed because it won't use camlp4 and doesn't install the Bytes module anymore, which is now included in OCaml 4.02. ok avsm@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 03:25:28 Log message: Import librewms 1.0.0. LibreWMS is a light-weight, elementary simple free software application implementing the functionalities of an almost complete standard compliant WMS client; in other words, you can use this simple tool in order to directly access an external WMS server. ok ajacoutot@ Status: Vendor Tag: landry Release Tags: landry_20140902 N ports/geo/spatialite/librewms/Makefile N ports/geo/spatialite/librewms/distinfo N ports/geo/spatialite/librewms/pkg/DESCR N ports/geo/spatialite/librewms/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 03:26:12 Modified files: geo/spatialite : Makefile Log message: +librasterlite2,librewms CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/02 03:33:53 Modified files: games/kobodeluxe: Makefile Added files: games/kobodeluxe/patches: patch-enemies_h Log message: work-around addition of pipe2() in unistd.h CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/02 04:14:33 Modified files: net/mfi : Makefile Log message: prepare for FAKE_AS_ROOT=No CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/02 04:14:55 Modified files: sys/dev/pci : if_bge.c if_bgereg.h Log message: Add Jumbo support for BCM5714 / BCM5780 and BCM5717 / BCM5719 / BCM5720 / BCM57765 / BCM57766 chipsets. ok mikeb@ "i think it should go in" dlg@ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/02 04:21:32 Modified files: share/man/man4 : bge.4 Log message: Jumbo support for some newer chipsets. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/02 04:24:32 Modified files: share/man/man4 : msk.4 sk.4 Log message: we dont enable jumbos based on the interfaces mtu config. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 04:52:43 Modified files: x11/awesome : Makefile x11/awesome/patches: patch-CMakeLists_txt patch-lib_awful_widget_taglist_lua_in patch-lib_menubar_menu_gen_lua_in patch-systray_c Added files: x11/awesome/patches: patch-globalconf_h patch-lib_wibox_init_lua_in Log message: Merge fixes from the stable branch. systray: Only intern the atom once systray: Only register/unregister when needed systray: Systray won't show with margin layout lib.awful.taglist: fix multiple tag selection menubar: Menubar should check all standard directories wibox: Make :find_widgets() easily accessible CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/02 05:09:38 Modified files: mail/zarafa : Makefile.inc mail/zarafa/zarafa: Makefile distinfo mail/zarafa/zarafa/patches: patch-common_Makefile_in patch-common_platform_linux_h patch-configure patch-doc_Makefile_in patch-doc_manual_xml patch-inetmapi_Makefile_in patch-installer_linux_server_cfg patch-libfreebusy_Makefile_in patch-provider_client_Makefile_in patch-provider_contacts_Makefile_in patch-provider_libserver_Makefile_in patch-provider_server_ECServer_cpp patch-provider_server_Makefile_in patch-provider_soap_Makefile_in patch-spooler_DAgent_cpp Log message: update to 7.1.11 CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/02 05:10:35 Modified files: mail/zarafa/webapp: Makefile distinfo mail/zarafa/webapp/pkg: PLIST Log message: update to 1.6 CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/02 05:16:49 Modified files: devel/py-doit : Makefile distinfo devel/py-doit/pkg: PLIST Log message: Update to 0.26.0 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 06:07:46 Modified files: geo/postgis : Makefile distinfo geo/postgis/patches: patch-liblwgeom_lwin_geojson_c geo/postgis/pkg: PLIST Removed files: geo/postgis/patches: patch-configure Log message: Update to postgis 2.1.3. Remove patch merged upstream in http://trac.osgeo.org/postgis/ticket/2723 pass INSTALL=install to the do-test target so that things are not installed with -o/-g. All tests are successful on amd64. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/02 06:31:47 Log message: import portscout-0.8.1.1 (0.8.1 with OpenBSD support) Portscout is a tool which looks for new versions of software in the FreeBSD ports tree, and potentially other software repositories. Various factors make this task a bit more difficult than it might initially seem. In particular, the array of weird and wonderful versioning schemes software vendors manage to come up with. A list of results can be found here: http://portscout.jasper.la/ ok ajacoutot@ Status: Vendor Tag: jasper Release Tags: jasper_20140209 N ports/misc/portscout/distinfo N ports/misc/portscout/Makefile N ports/misc/portscout/pkg/PLIST N ports/misc/portscout/pkg/DESCR N ports/misc/portscout/patches/patch-portscout_conf No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/02 06:32:24 Modified files: misc : Makefile Log message: +portscout CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/02 06:35:30 Modified files: net/unifi : Makefile Log message: fix for FAKE_AS_ROOT=No CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/02 06:56:35 Modified files: databases/postgresql: Makefile lang/ruby : Makefile.inc Log message: not yet on by default, still some love needed for umasks CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 07:04:34 Modified files: security/wpa_supplicant: Makefile distinfo security/wpa_supplicant/patches: patch-src_utils_eloop_c Removed files: security/wpa_supplicant/patches: patch-src_crypto_ms_funcs_c patch-src_crypto_tls_h patch-src_crypto_tls_openssl_c patch-src_utils_common_c Log message: Update to wpa_supplicant-2.2 Tested by pascal@ and myself. I also take maintainership, as per sthen's request. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 07:22:32 Log message: Import girara 0.2.2. Girara is a library that implements a user interface that focuses on simplicity and minimalism. Currently based on GTK+3, a cross-platform widget toolkit, it provides an interface that focuses on three main components: A so-called view widget that represents the actual application (e.g. a website (browser), an image (image viewer) or the document (document viewer)), an input bar that is used to execute commands of the application and the status bar which provides the user with current information. girara was designed to replace and enhance the user interface that is used by zathura and jumanji and other features that those applications share. ok ajacoutot@ Status: Vendor Tag: landry Release Tags: landry_20140902 N ports/x11/girara/Makefile N ports/x11/girara/distinfo N ports/x11/girara/patches/patch-Makefile N ports/x11/girara/patches/patch-macros_h N ports/x11/girara/pkg/DESCR N ports/x11/girara/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 07:23:30 Modified files: x11 : Makefile Log message: +girara CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 07:29:57 Log message: (re-)import zathura/core 0.2.9. zathura is a highly customizable and functional PDF viewer based on the poppler rendering library and the gtk+ toolkit. The idea behind zathura is an application that provides a minimalistic and space saving interface as well as an easy usage that mainly focuses on keyboard interaction. Note that after 0.1.0, zathura was rearchitectured/splitted between 'core' (the viewer itself) and 'plugins' (taking care of the rendering itself). Users of previous version will need to install zathura-pdf-poppler or zathura-pdf-mupdf to restore their featureset. ok ajacoutot@ Status: Vendor Tag: landry Release Tags: landry_20140902 N ports/textproc/zathura/core/Makefile N ports/textproc/zathura/core/distinfo N ports/textproc/zathura/core/patches/patch-Makefile N ports/textproc/zathura/core/patches/patch-tests_Makefile N ports/textproc/zathura/core/pkg/DESCR N ports/textproc/zathura/core/pkg/PLIST N ports/textproc/zathura/core/pkg/README No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 07:30:13 Modified files: sysutils/salt : Makefile sysutils/salt/patches: patch-salt_modules_timezone_py patch-salt_modules_mount_py Log message: Use strip() and lstrip() instead of replace(). CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 07:32:54 Log message: Import zathura/plugins: - zathura-pdf-poppler-0.2.5 using poppler lib for pdf rendering - zathura-pdf-mupdf-0.2.6 using mupdf backend for pdf (note, the two pdf plugins install the same file and thus conflict) - zathura-ps-0.2.2 for PostScript files - zathura-djvu-0.2.3 for DJVU files - zathura-cb-0.1.2 for comic book archives ok ajacoutot@ Status: Vendor Tag: landry Release Tags: landry_20140902 N ports/textproc/zathura/plugins/Makefile.inc N ports/textproc/zathura/plugins/Makefile N ports/textproc/zathura/plugins/cb/Makefile N ports/textproc/zathura/plugins/cb/distinfo N ports/textproc/zathura/plugins/cb/pkg/DESCR N ports/textproc/zathura/plugins/cb/pkg/PLIST N ports/textproc/zathura/plugins/djvu/Makefile N ports/textproc/zathura/plugins/djvu/distinfo N ports/textproc/zathura/plugins/djvu/pkg/DESCR N ports/textproc/zathura/plugins/djvu/pkg/PLIST N ports/textproc/zathura/plugins/mupdf/Makefile N ports/textproc/zathura/plugins/mupdf/distinfo N ports/textproc/zathura/plugins/mupdf/pkg/DESCR N ports/textproc/zathura/plugins/mupdf/pkg/PLIST N ports/textproc/zathura/plugins/poppler/Makefile N ports/textproc/zathura/plugins/poppler/distinfo N ports/textproc/zathura/plugins/poppler/pkg/DESCR N ports/textproc/zathura/plugins/poppler/pkg/PLIST N ports/textproc/zathura/plugins/ps/Makefile N ports/textproc/zathura/plugins/ps/distinfo N ports/textproc/zathura/plugins/ps/pkg/DESCR N ports/textproc/zathura/plugins/ps/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 07:33:39 Modified files: textproc/zathura: Makefile Removed files: textproc/zathura: distinfo textproc/zathura/patches: patch-config_def_h patch-config_mk textproc/zathura/pkg: DESCR PLIST Log message: Remove old files from previous zathura port - update Makefile to recurse into core and plugins subdirs. CVSROOT: /cvs Module name: ports Changes by: pea@cvs.openbsd.org 2014/09/02 07:39:39 Modified files: databases/postgresql: Makefile distinfo databases/postgresql/pkg: PLIST-docs PLIST-plpython Log message: Update to 9.3.5 ok sthen@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 07:42:47 Modified files: textproc/zathura/plugins: Makefile.inc Log message: fix LDEP CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 08:01:51 Modified files: sysutils/salt : Makefile Added files: sysutils/salt/patches: patch-salt_modules_network_py Log message: Fix arp() and mod_hostname() to work on OpenBSD. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/02 08:08:39 Modified files: app/cwm : mousefunc.c Log message: bring menu bits closer together CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/02 08:26:39 Modified files: infrastructure/mk: bsd.port.mk databases/sqlports: Makefile databases/sqlports/files: Info.pm Log message: hookup PORTSCOUT ok espie@ CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/09/02 08:27:23 Modified files: share/man/man5 : bsd.port.mk.5 Log message: document new PORTSCOUT variable. w/ and ok espie@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/02 08:28:20 Modified files: www/webkit : Makefile x11/gnome : Makefile.inc Log message: use the new PORTSCOUT variable to instruct it to ignore odd versions (i.e. unstable releases) ok aja@ espie@ landry@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/02 08:39:37 Modified files: x11/gnome : Makefile.inc gnome.port.mk Log message: move PORTSCOUT to gnome.port.mk so all gnome ports can use it CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/02 08:55:37 Modified files: math/R : Makefile distinfo math/R/patches : patch-Makefile_in patch-configure patch-src_main_connections_c patch-src_main_main_c patch-src_main_platform_c patch-src_scripts_javareconf_in math/R/pkg : PLIST Added files: math/R/patches : patch-src_main_Rstrptime_h Log message: Update to R-3.1.1 From maintainer Rafael Sadowski with a patch by zhuk@ to please -Wbounded checks. Also, I patched Makefile.in to not check for java during the build. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/02 09:01:12 Modified files: lang/open-cobol: Makefile Log message: do not pick up kpathsea/getopt.h from print/texlive/base CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 09:04:59 Modified files: misc/portscout : Makefile misc/portscout/pkg: PLIST Added files: misc/portscout/patches: patch-portscout_pod Log message: Rename the utility to 'portscout' (instead of portscout.pl). Install the sample file with mode 0640 since it can contain a DB password. In the man page, rename the postgres user to match OpenBSD's. ok jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 09:12:22 Modified files: misc/portscout : Makefile Log message: Missing RUN_DEPENDS. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 09:16:26 Modified files: x11/gnome : gnome.port.mk Log message: Move PORTSCOUT at the top. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 09:36:27 Modified files: x11/gnome/tracker: Makefile distinfo x11/gnome/tracker/pkg: PLIST Log message: Update to meta-tracker-1.0.4. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/02 10:01:34 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/02 10:20:41 Modified files: usr.sbin/httpd : httpd.h server.c server_fcgi.c Log message: FastCGI did not support persistent connections. Add initial support for persistent connections with FastCGI by implementing chunked Transfer-Encoding. This only works with HTTP/1.1. With input and help from florian@ who found some FastCGI edge cases. OK florian@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 10:34:57 Modified files: mail/mozilla-thunderbird: Makefile distinfo mail/thunderbird-i18n: Makefile.inc distinfo Log message: Update to thunderbird 31.1.0/lightning 3.3.1. See https://www.mozilla.org/en-US/thunderbird/31.1.0/releasenotes/ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 10:36:52 Modified files: www/firefox-esr: Makefile distinfo www/firefox-esr-i18n: Makefile.inc distinfo Log message: Update to firefox-esr 31.1.0. See https://www.mozilla.org/en-US/firefox/31.1.0/releasenotes/ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 10:37:24 Modified files: devel/xulrunner/24: Makefile distinfo Log message: Update to xulrunner 24.8.0 built from the corresponding firefox ESR. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 10:43:04 Modified files: www/firefox-i18n: Makefile.inc distinfo www/mozilla-firefox: Makefile distinfo www/mozilla-firefox/patches: patch-browser_installer_Makefile_in patch-gfx_skia_moz_build patch-js_src_ctypes_libffi_src_dlmalloc_c patch-storage_src_mozStorageConnection_cpp Removed files: www/mozilla-firefox/patches: patch-configure_in patch-toolkit_components_downloads_nsDownloadManager_cpp patch-webapprt_gtk2_Makefile_in patch-webapprt_moz_build patch-xpcom_io_SpecialSystemDirectory_cpp Log message: Update to firefox 32.0 - see https://www.mozilla.org/en-US/firefox/32.0/releasenotes/ - remove patch-toolkit_components_downloads_nsDownloadManager_cpp and patch-xpcom_io_SpecialSystemDirectory_cpp fiddling with modes when creating user dirs, they never made sense to me, and this is the wrong place to touch this. - remove patch-webapprt_moz_build, patch-webapprt_gtk2_Makefile_in and patch-configure_in from #1012447, merged upstream CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 11:18:55 Modified files: sysutils/salt : Makefile sysutils/salt/patches: patch-salt_modules_bsd_shadow_py patch-salt_modules_mount_py patch-salt_modules_network_py patch-salt_modules_postgres_py patch-salt_modules_timezone_py patch-salt_modules_useradd_py patch-salt_states_user_py Log message: All patches have been committed upstream. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 11:43:10 Modified files: misc/portscout : Makefile misc/portscout/patches: patch-portscout_conf Log message: Tweak default config. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/02 11:43:29 Modified files: regress/usr.sbin/syslogd: Syslogd.pm args-localhost-only4.pl args-localhost-only6.pl args-localhost-proto-udp4.pl args-localhost-proto-udp6.pl args-localhost.pl args-proto-udp.pl args-proto-udp4.pl args-proto-udp6.pl args-server-udp4.pl args-server-udp6.pl args-sighup-config.pl args-sighup-privsep.pl args-sighup.pl args-sigpipe.pl args-sigterm.pl funcs.pl Log message: To examine the operation of the signal handlers, the tests grep in the ktrace output of syslogd. Also make the tests work without DNS and without sudo. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/02 12:31:32 Modified files: sysutils/ttyload: Makefile Log message: Change maintainer email address to my openbsd address (sync with my other ports) and bump. ok jturner@ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/02 13:15:40 Modified files: misc/vttest : Makefile distinfo Log message: maintenance update to 20140305 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/02 13:17:01 Modified files: news/trn : Makefile Added files: news/trn/patches: patch-filter_c Log message: work-around addition of pipe2() in unistd.h; ok espie@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 13:23:33 Modified files: sysutils/upower: Makefile distinfo Removed files: sysutils/upower/patches: patch-src_openbsd_up-backend_c Log message: Update to upower 0.99.1. Remove patch merged upstream, and now useless dep on polkit. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/02 13:39:35 Modified files: net/mirmon : Makefile distinfo Log message: update to mirmon 2.10 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/02 13:45:53 Modified files: security/sslsplit: Makefile distinfo security/sslsplit/patches: patch-GNUmakefile patch-sslsplit_1 Log message: update to sslsplit 0.4.8 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/02 13:46:53 Modified files: audio/scmpc : Makefile distinfo audio/scmpc/patches: patch-scmpc_1_in patch-src-preferences_c Log message: update to scmpc 0.4.1, now uses libmpdclient CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/02 13:48:39 Log message: Import games/cpat CPat is a curses based solitaire/patience collection. It's pretty stable and at present contains implementations of Freecell, Klondike, Spider, 40 Thieves, Baker's Dozen, Scorpion, Penguin, Yukon and Stategy. The games are played in your favourite shell using keyboard commands. ok landry@ Status: Vendor Tag: bcallah Release Tags: bcallah_20140902 N ports/games/cpat/Makefile N ports/games/cpat/distinfo N ports/games/cpat/pkg/PLIST N ports/games/cpat/pkg/DESCR N ports/games/cpat/patches/patch-doc_cpat_6 No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/02 13:49:52 Modified files: games : Makefile Log message: +cpat CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/02 13:53:08 Modified files: telephony/asterisk: Makefile distinfo telephony/asterisk/patches: patch-channels_chan_sip_c Log message: update to asterisk 11.12.0 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/02 13:54:24 Modified files: net/curl : Makefile distinfo net/curl/pkg : PLIST Log message: maintenance update to 7.37.1 CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/09/02 14:45:54 Modified files: archivers/lzip/lunzip: Makefile distinfo Log message: Update to lunzip 1.6. CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/09/02 16:59:37 Modified files: devel/p5-Data-Validate-IP: Makefile distinfo Log message: update p5-Data-Validate-IP to 0.24 CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/02 18:46:04 Modified files: sys/dev/ic : mpivar.h mpi.c Log message: tasks dont need a mutex and a semaphore to protect against multiple uses of the task structure like workq tasks did. tested on an fc929 CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/02 20:34:34 Modified files: sbin/dump : dump.h Log message: Kill off compat for systems that don't define NAME_MAX or that lack stuff like, oh, strchr() and prototypes for read() and write(). Mark quit() as both __dead and printf-like, and dumpabort() as __dead. ok krw@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/02 20:37:24 Modified files: sbin/restore : extern.h tape.c Log message: Mark msg() and panic() as printf-like and fix the format error it turns up ok krw@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/02 23:17:08 Modified files: usr.bin/mandoc : apropos.1 main.c man.1 man_term.c mandoc.1 mdoc_term.c term.h term_ascii.c Log message: Implement the traditional -h option for man(1): show the SYNOPSIS only. As usual, we get mandoc -h and apropos -h for free. Try stuff like "apropos -h In=dirent" or "apropos -h Fa=timespec". Only useful for terminal output, so -Tps, -Tpdf, -Thtml ignore -h for now. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/02 23:57:51 Modified files: misc/portscout : Makefile misc/portscout/pkg: PLIST Log message: Install missing reminder.mail template. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/03 00:03:41 Modified files: www/youtube-dl : Makefile distinfo www/youtube-dl/pkg: PLIST Log message: Update to youtube-dl-2014.09.01.2 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/03 00:23:10 Modified files: mail/geary : Makefile distinfo mail/geary/pkg : PLIST Log message: Update to geary 0.6.3, reminded by ajacoutot@ and jasper@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/03 00:43:28 Modified files: x11/mplayer : Makefile distinfo x11/mplayer/patches: patch-DOCS_man_en_mplayer_1 patch-configure Removed files: x11/mplayer/patches: patch-libmpdemux_demux_real_c Log message: Update to MPlayer 20140824 snapshot. ok jca@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/03 01:13:02 Modified files: net/p5-Net-Patricia: Makefile distinfo net/p5-Net-Patricia/pkg: PLIST Log message: Update p5-Net-Patricia to 1.22. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/03 01:41:10 Modified files: devel/ounit : Makefile distinfo devel/ounit/pkg: PFRAG.dynlink-native PFRAG.native PLIST Log message: Update to 2.0.0 ok avsm@ CVSROOT: /cvs Module name: src Changes by: giovanni@cvs.openbsd.org 2014/09/03 01:42:47 Modified files: usr.sbin/smtpd : lka.c Log message: if crypt(3) fails return an authentication error ok gilles@ CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/09/03 01:44:33 Modified files: sys/arch/amd64/conf: GENERIC.MP sys/arch/i386/conf: GENERIC.MP Log message: Sync amd64 and i386 GENERIC.MP with other arches by including a commented-out MP_LOCKDEBUG option ok mpi@ phessler@ dlg@ guenther@ CVSROOT: /cvs Module name: src Changes by: giovanni@cvs.openbsd.org 2014/09/03 01:47:50 Modified files: usr.bin/encrypt: encrypt.1 encrypt.c Log message: kill md5 support, broken since May ok tedu@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/03 02:26:00 Modified files: usr.bin/encrypt: encrypt.c Log message: remove -m from usage(); CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/03 02:51:01 Modified files: sys/net : route.c Log message: Treat broadcast entries like local ones and give them the highest route priority. While here document a RTM_ADD message is only send to userland for local entries. ok mikeb@, florian@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 02:53:49 Modified files: sysutils/salt : Makefile Log message: Add missing TEST_DEPENDS and update the 'make test' stats. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/03 02:53:54 Modified files: sys/netinet : if_ether.c Log message: Make sure broadcast entries won't be freed by the arp timer so we can use them for address lookups. While here do let in_arpinput() overwrite local or broadcast entries. ok mikeb@, florian@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/03 02:54:41 Modified files: security/zkt : Makefile Log message: fix following removal of BIND from base; pick up tools from the package instead CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/03 02:59:06 Modified files: sys/netinet : in.c Log message: When a route to prefix (connected route) is added, if its associated broadcast address is non null, add a broadcast entry flagged with RTF_BROADCAST. Re-use the existing logic to switch a route to prefix from an ifa to another to also move this broadcast entry. Prior to this change broadcast entries were simple clonned ARP entries, that would be deleted once their timer expired since they would always be incomplete. With this change they are now persistant and identifiable with a new flag This version of the diff prevent a corruption reported by millert@ ok mikeb@, florian@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/03 03:05:25 Modified files: infrastructure/mk: bsd.port.mk Log message: fix FAKE_AS_ROOT=Yes... don't create links in that case. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 03:11:20 Modified files: sysutils/salt : Makefile sysutils/salt/pkg: PLIST Log message: Seems that the egg-info file now always installs with the proper version. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 03:28:13 Modified files: devel/libwnck3 : Makefile distinfo devel/libwnck3/pkg: PLIST Log message: update to libwnck3-3.4.9 CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/03 03:46:46 Modified files: math/ntl : Makefile distinfo math/ntl/patches: patch-src_DoConfig patch-src_tools_c math/ntl/pkg : PLIST Log message: Update ntl to 6.2.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 03:53:55 Modified files: x11/gnome : gnome.port.mk Log message: Consistency. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 03:55:19 Modified files: devel/appstream-glib: Makefile security/p11-kit: Makefile Log message: Add PORTSCOUT entries. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/03 04:06:23 Log message: Import p5-Modern-Perl 1.20140107. Modern Perl programs use several modules to enable additional features of Perl and of the CPAN. Instead of copying and pasting all of these use lines, instead write only one: use Modern::Perl; This enables the strict and warnings pragmas, as well as all of the features available in Perl 5.10. It also enables C3 method resolution order as documented in perldoc mro and loads IO::File and IO::Handle so that you may call methods on filehandles. In the future, it may include additional core modules and pragmas. From MAINTAINER edward # rdtan / net, ok sthen@ Status: Vendor Tag: edward Release Tags: landry_20140903 N ports/devel/p5-Modern-Perl/Makefile N ports/devel/p5-Modern-Perl/distinfo N ports/devel/p5-Modern-Perl/pkg/DESCR N ports/devel/p5-Modern-Perl/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/03 04:08:47 Modified files: devel : Makefile Log message: +p5-Modern-Perl CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/03 04:16:43 Modified files: multimedia/get_iplayer: Makefile multimedia/get_iplayer/patches: patch-get_iplayer Log message: pull up get_iplayer changes from git head CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/03 04:21:39 Modified files: infrastructure/db: systrace.filter Log message: add native-pipe2, from Mark Patruck CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/03 04:22:03 Modified files: lang/ocaml-camlp4: Makefile lang/ocaml-camlp4/pkg: PLIST Log message: fix installation location of findlib META. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 04:24:24 Modified files: devel/ptlib : Makefile Removed files: devel/ptlib/patches: patch-make_ptbuildopts_mak_in Log message: Drop patch; not needed anymore since the recent FAKE_AS_ROOT fix. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/03 04:39:41 Modified files: usr.sbin/arp : arp.8 arp.c usr.sbin/ndp : ndp.8 ndp.c Log message: Be coherent in the way arp(8) and ndp(8) display local entries and use a new flag `l' to ditinguish them. Also skip broadcast entries, they are not reall ARP entries and will never be resolved to anything, requested by deraadt@. ok bluhm@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 05:11:27 Modified files: net/librest : Makefile distinfo net/librest/pkg: PLIST Log message: update to librest-0.7.92 CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/09/03 05:17:59 Modified files: graphics/opencolorio: Makefile Added files: graphics/opencolorio/patches: patch-CMakeLists_txt patch-export_OpenColorIO_OpenColorIO_h patch-ext_yaml-cpp-0_5_1_patch patch-src_core_Config_cpp patch-src_core_Display_cpp patch-src_core_Display_h patch-src_core_OCIOYaml_cpp patch-src_core_OCIOYaml_h Log message: Merge commit 63c6bde2acac363c8c5e7fd3d744e17ea99e20ab from upstream to make this work with both the in-tree and a newer version of yaml-cpp. Requested by jasper@, same diff from kirby@. ok jasper@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/03 05:19:33 Modified files: devel/py-clint : Makefile distinfo devel/py-clint/pkg: PLIST Log message: maintainer update to py-clint 0.3.7, from frantisek holop (plus whitespace consistency tweak from me) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/03 05:47:30 Modified files: devel/py-tz : Makefile distinfo devel/py-tz/pkg: PLIST Log message: maintainer update to py-tz 2014.7, from frantisek holop CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/03 05:55:55 Modified files: net/icinga/core: Makefile distinfo net/icinga/core/pkg: PLIST-ido Log message: update to icinga 1.11.7 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/03 06:03:51 Added files: x11/ogre/patches: patch-Samples_Browser_CMakeLists_txt Log message: Fix this in preparation for cmake-3.0.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 06:12:42 Modified files: misc/portscout : Makefile distinfo Log message: sync with upstream git: - prevent annoying warning with empty master sites - enable reading PORTSCOUT variable on OpenBSD CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/03 06:51:50 Modified files: mail/p5-Email-Filter: Makefile distinfo Log message: Maintainer update to p5-Email-Filter 1.034, from Armin Wolfermann CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/03 07:19:00 Log message: Import Dust Racing 1.7.3. Dust Racing (Dustrac) is a tile-based, cross-platform 2D racing game written in Qt (C++) and OpenGL. Dust Racing comes with a Qt-based level editor for easy level creation. A separate engine, MiniCore, is used for physics modeling. From an original submission by bentley@, updated and tweaked by me & dcoppa ok kirby@ dcoppa@ Status: Vendor Tag: bentley Release Tags: landry_20140903 N ports/games/dustrac/Makefile N ports/games/dustrac/distinfo N ports/games/dustrac/pkg/DESCR N ports/games/dustrac/pkg/PLIST N ports/games/dustrac/patches/patch-InstallLinux_cmake No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/03 07:19:57 Modified files: games : Makefile Log message: +dustrac CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/03 07:39:15 ports/textproc/py-sphinx/patches Update of /cvs/ports/textproc/py-sphinx/patches In directory cvs.openbsd.org:/tmp/cvs-serv1125/patches Log Message: Directory /cvs/ports/textproc/py-sphinx/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/03 07:43:16 Modified files: textproc/py-sphinx: Makefile Added files: textproc/py-sphinx/patches: patch-sphinx_writers_manpage_py Log message: Fix manpage writer, from upstream HG changeset ffb145b7884fc926d6a68f4aaeede1d4964f727c Needed by the upcoming update to cmake-3.0.1 This port could use an update... CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/03 07:43:39 Modified files: databases/py-mysql: Makefile distinfo databases/py-mysql/patches: patch-_mysql_c databases/py-mysql/pkg: PLIST Log message: Update py-mysql to 1.2.5, from frantisek holop, thanks ! CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 08:00:25 Modified files: devel/appstream-glib: Makefile distinfo Log message: Update to appstream-glib-0.2.6. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 08:57:14 Modified files: x11/gnome/caribou: Makefile distinfo x11/gnome/caribou/pkg: PLIST Removed files: x11/gnome/caribou/patches: patch-libcaribou_Makefile_in Log message: Update to caribou-0.4.14. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 09:03:33 Modified files: textproc/libxml++: Makefile textproc/libxml++/pkg: PLIST Removed files: textproc/libxml++/pkg: PFRAG.shared Log message: Move to the x11/gnome MODULE. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/03 09:56:07 Modified files: regress/usr.sbin/syslogd: Makefile funcs.pl Added files: regress/usr.sbin/syslogd: args-client-unix.pl args-maxunix.pl Log message: Add tests that send log messages via unix domain sockets to syslogd. Also check that the maximum number of -a path is handled correctly. CVSROOT: /cvs Module name: ports Changes by: giovanni@cvs.openbsd.org 2014/09/03 10:12:14 Modified files: www/piwik : Makefile distinfo www/piwik/pkg : PLIST Log message: Update to 2.5.0 CVSROOT: /cvs Module name: ports Changes by: giovanni@cvs.openbsd.org 2014/09/03 10:28:31 Modified files: databases/mysql-utilities: Makefile distinfo Log message: Bugfix update to 1.4.4 CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/03 11:48:19 Modified files: lang/ocaml/pkg : PFRAG.native-main PLIST-main Log message: Fix PLISTs for bytecode archs. No plist change for native archs. Bytecode archs were broken until now. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/03 12:08:26 Modified files: usr.bin/mandoc : main.c mandocdb.c mansearch.c mansearch.h share/man/man5 : mandoc.db.5 Log message: If a manual page is installed gzip(1)ed, let makewhatis(8) take note in mandoc.db(5), such that man(1) -w and apropos(1) -w can report the correct filename. This is a prerequisite for letting apropos -a and man support gzip'ed manuals in the future, which doesn't work yet. CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2014/09/03 12:55:07 Modified files: usr.bin/ssh : sshpty.c Log message: tighten permissions on pty when the "tty" group does not exist; pointed out by Corinna Vinschen; ok markus CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:14:21 Modified files: audio/py-mpd2 : Makefile distinfo Log message: update to py-mpd2-0.5.3 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:16:08 Modified files: devel/p5-Test-Manifest: Makefile distinfo devel/p5-Test-Manifest/pkg: PLIST Log message: update to p5-Test-Manifest-2.02 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:19:45 Modified files: net/p5-POE-Filter-IRCD: Makefile distinfo Log message: update to p5-POE-Filter-IRCD-2.44 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:23:54 Modified files: audio/glyr : Makefile distinfo audio/glyr/pkg : PLIST Log message: update to glyr-1.0.2 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:24:36 Modified files: misc/portscout : Makefile distinfo misc/portscout/pkg: PLIST Log message: - unbreak the sourceforge scanner and add a scanner for ports with releases on github CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:29:14 Modified files: sysutils/libvirt: Makefile distinfo Log message: update to libvirt-1.2.8 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:29:19 Modified files: sysutils/libvirt-python: Makefile distinfo Log message: update to libvirt-python-1.2.8 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:42:16 Modified files: x11/gnome : gnome.port.mk Log message: use += to set PORTSCOUT so consumers of this module can append their own stuffs to it as discussed with aja@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:42:45 Modified files: devel/vte : Makefile Log message: limit portscout to the gnome2 version of vte. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/03 13:44:51 Modified files: x11/gnome/gedit: Makefile distinfo Log message: gedit-3.12.2 CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/09/03 13:53:02 Modified files: misc/p5-File-LibMagic: Makefile distinfo Log message: update p5-File-LibMagic to 1.03 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/03 15:15:44 Modified files: multimedia/minidlna: Makefile distinfo multimedia/minidlna/patches: patch-upnphttp_c Removed files: multimedia/minidlna/patches: patch-metadata_c Log message: update to minidlna 1.1.4, from Mark Patruck CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/03 15:19:34 Modified files: etc : changelist Log message: No more /etc/rndc.key. ok sthen@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/03 17:20:33 Modified files: usr.bin/mandoc : main.c mandoc.h mandocdb.c msec.c read.c Log message: Add *.gz support to apropos(1) -a, manm(1), and even mandoc(1). Implemented by moving the zip code from makewhatis(8) to the parser lib. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/03 18:36:00 Modified files: sys/sys : pool.h sys/kern : subr_pool.c Log message: rework how pools with large pages (>PAGE_SIZE) are implemented. this moves the size of the pool page (not arch page) out of the pool allocator into struct pool. this lets us create only two pools for the automatically determined large page allocations instead of 256 of them. while here support using slack space in large pages for the pool_item_header by requiring km_alloc provide pool page aligned memory. lastly, instead of doing incorrect math to figure how how many arch pages to use for large pool pages, just use powers of two. ok mikeb@ CVSROOT: /cvs Module name: www Changes by: tedu@cvs.openbsd.org 2014/09/03 19:17:11 Modified files: . : stable.html Log message: add hint about GENERIC.MP CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 23:31:34 Modified files: x11/gnome/gdm : Makefile x11/gnome/gdm/pkg: PLIST Log message: Fix @extra files list. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/03 23:32:44 Modified files: devel/pango : Makefile distinfo Log message: Update to pango-1.36.7. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/03 23:37:41 Log message: Import of x265. x265 is an open-source project and free application library for encoding video streams into the H.265/High Efficiency Video Coding (HEVC) format. ok ajacoutot@ Status: Vendor Tag: brad Release Tags: brad_20140904 N ports/multimedia/x265/Makefile N ports/multimedia/x265/distinfo N ports/multimedia/x265/patches/patch-source_CMakeLists_txt N ports/multimedia/x265/patches/patch-source_common_version_cpp N ports/multimedia/x265/pkg/PLIST N ports/multimedia/x265/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/03 23:39:11 Modified files: multimedia : Makefile Log message: +x265 CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/03 23:49:49 Modified files: graphics/ffmpeg: Makefile Log message: Enable the x265 support. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/03 23:58:50 Modified files: devel/pyflakes : Makefile distinfo devel/pyflakes/pkg: PLIST Log message: Maintainer update to pyflakes 0.8.1, from frantisek holop CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/09/04 01:04:57 Log message: Import html-xml-utils-6.7. html-xml-utils contains a number of simple utilities for manipulating HTML and XML files. They perform actions such as number headings in HTML, make a table of contents, pretty-print, and so on. ok jca@ Status: Vendor Tag: bentley Release Tags: bentley_20140904 N ports/textproc/html-xml-utils/Makefile N ports/textproc/html-xml-utils/distinfo N ports/textproc/html-xml-utils/pkg/PLIST N ports/textproc/html-xml-utils/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/09/04 01:05:42 Modified files: textproc : Makefile Log message: +html-xml-utils CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/04 01:43:56 Modified files: devel/ocaml-extlib: Makefile distinfo devel/ocaml-extlib/pkg: PFRAG.native PLIST Removed files: devel/ocaml-extlib/patches: patch-Makefile Log message: straightforward upgrade to 1.6.1 ok avsm@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/04 01:46:07 Modified files: editors/subtitleeditor: Makefile distinfo Log message: Update to subtitleeditor-0.41.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/04 02:20:16 Modified files: security/heimdal: Makefile Log message: Make sure not to pick-up libexecinfo if installed. spotted by espie@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/04 03:24:43 Modified files: productivity/projectlibre: Makefile distinfo Log message: update to projectlibre-1.5.9 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/04 03:32:56 Modified files: sysutils/mcollective-plugins/package-agent: Makefile distinfo Log message: update to mcollective-package-agent-4.3.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/04 03:36:47 Modified files: devel/py-gobject: Makefile textproc/gtkspell: Makefile devel/libwnck : Makefile www/gtkhtml3 : Makefile www/gtkhtml4 : Makefile Log message: these ports have multiple versions in the tree, (e.g. py-gobject and py-gobject3), so add PORTSCOUT annotations to limit the versions to look for as otherwise it would pickup a newer version (3.something) which is actually packaged by the other port (py-gobject3). ok aja@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/04 03:52:09 Modified files: sysutils/mcollective-plugins/puppet-agent: Makefile distinfo sysutils/mcollective-plugins/puppet-agent/pkg: PLIST Log message: update to puppet-agent 1.8.0 CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/04 04:23:50 Modified files: graphics/pngcrush: Makefile distinfo Log message: Update pngcrush to 1.7.77. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/04 04:43:07 Modified files: graphics/libgphoto2: Makefile distinfo Log message: Update to libgphoto-2.5.5.1. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/04 05:48:36 Modified files: security/pdfcrack: Makefile distinfo security/pdfcrack/patches: patch-Makefile Log message: Update pdfcrack to 0.14. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/04 05:56:52 Modified files: games/tuxpaint : Makefile distinfo games/tuxpaint/patches: patch-Makefile patch-src_manpage_tuxpaint_1 patch-src_tuxpaint_c games/tuxpaint/pkg: PLIST Removed files: games/tuxpaint/pkg: PFRAG.shared Log message: Update to tuxpaint-0.9.22. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/04 06:32:45 Modified files: devel/protobuf-c: Makefile distinfo devel/protobuf-c/pkg: PLIST Added files: devel/protobuf-c/patches: patch-Makefile_am Removed files: devel/protobuf-c/patches: patch-configure patch-src_Makefile_in patch-src_google_protobuf-c_protobuf-c-data-buffer_c patch-src_google_protobuf-c_protobuf-c-dispatch_c patch-src_google_protobuf-c_protobuf-c-rpc_c patch-src_google_protobuf-c_protobuf-c_c devel/protobuf-c/pkg: PFRAG.shared Log message: Update to protobuf-c 1.0.1 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/04 06:33:27 Modified files: audio/umurmur : Makefile distinfo audio/umurmur/patches: patch-src_client_c patch-src_conf_c patch-src_messages_c patch-src_ssl_h Added files: audio/umurmur/patches: patch-CMakeLists_txt patch-cmake_Modules_FindLibconfig_cmake patch-cmake_Modules_FindProtobufC_cmake patch-src_byteorder_h patch-src_config_h_in patch-src_server_c Removed files: audio/umurmur/patches: patch-src_conf_h patch-src_crypt_c patch-src_crypt_h patch-src_types_h Log message: Update to umurmur-0.2.15 CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/04 07:45:17 Modified files: usr.sbin/httpd : parse.y Log message: One line change adding the 'include' directive to the valid server options. This allows to include external configuration files from within server and location sections, not just from global context, for example to share common configuration within multiple servers (or virtual hosts). CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/04 07:46:35 Modified files: sysutils/ykpers: Makefile distinfo Log message: minor update to ykpers 1.15.3 CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/09/04 07:51:54 Modified files: lib/libc/net : htonl.3 Log message: POSIX specifies arpa/inet.h as the include file for these. OK aja@ mikeb@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/04 08:24:20 Modified files: net/gnugk : Makefile distinfo Log message: Update to gnugk-3.7. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/04 08:35:47 Modified files: audio/mumble : Makefile distinfo Log message: Bugfix update to mumble-1.2.8 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/04 08:45:56 Modified files: net/pidgin-sipe: Makefile distinfo net/pidgin-sipe/pkg: PLIST Log message: maintainer update to pidgin-sipe-1.18.3, from Tom Doherty CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/04 09:19:05 Modified files: usr.sbin/syslogd: syslogd.c Log message: Move the handlers for the poll events into separate functions. They will become the libevent callbacks later. input and OK doug@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/04 09:56:26 Modified files: lang/ocaml : Makefile Log message: bump due to reordering of plist. Noticed by naddy@ Thanks! CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/04 09:57:13 Modified files: regress/usr.sbin/syslogd: args-client-unix.pl Added files: regress/usr.sbin/syslogd: args-client-native.pl Log message: Check that messages from sendsyslog(2) or unix domain sockets contain the short host name. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/04 10:46:37 Log message: Add patches to fix bytecode only building. Status: Vendor Tag: chrisz Release Tags: chrisz_20140904 N ports/lang/ocaml-camlp4/patches/patch-Makefile N ports/lang/ocaml-camlp4/patches/patch-configure No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/04 11:11:45 Modified files: multimedia/x265: distinfo Log message: sync distinfo with the addition of DIST_SUBDIR. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/04 12:38:04 Modified files: misc/portscout : Makefile distinfo misc/portscout/pkg: PLIST Log message: add dedicated handlers for CPAN, Hackage and Rubygems to prevent pounding the master sites and instead query the relevant APIs for the latest version. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/04 13:01:02 Modified files: sys/arch/hppa/hppa: autoconf.c sys/arch/hppa64/hppa64: autoconf.c Log message: Revert previous change, but use curcpu()->ci_schedstate.spc_cp_time[] instead of global cp_time[] for live information, as loadavg is not updated fast enough for hz/16 blinking rate. Prompted by feedback from mickey@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/04 13:14:47 Modified files: sys/kern : kern_clock.c kern_sysctl.c sys/sys : dkstat.h Log message: Remove global cp_time[] array; no longer used now that all arches implement cpu_info. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/04 13:44:09 Modified files: devel/ocaml-extlib: Makefile Log message: Add missing BUILD_DEPENDS for camlp4. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/04 13:53:07 Modified files: www/conkeror : Makefile Log message: bump required after xulrunner update CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/04 14:30:45 Modified files: mail/zarafa/zarafa: Makefile mail/zarafa/zarafa/patches: patch-common_platform_linux_cpp Log message: unbreak build: use uuid_create() from the base system CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/09/04 14:38:59 Modified files: benchmarks/speedtest-cli: Makefile distinfo Log message: Update speedtest-cli to 0.3.1 OK sthen@ aja@ CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/09/04 15:28:56 Modified files: net/ortp : Makefile distinfo net/ortp/pkg : PLIST Added files: net/ortp/patches: patch-src_ortp_srtp_c Removed files: net/ortp/patches: patch-configure_ac patch-src_b64_c patch-src_netsim_c patch-src_ortp_c patch-src_rtpsession_c patch-src_rtpsession_inet_c patch-src_stun_c patch-src_zrtp_c Log message: Update oRTP to 0.23.0. Includes some security fixes, and also incorporates all local patches we had. The only new patch will be needed until security/srtp gets updated. Major library version bumped because some types in API changed (int -> size_t). Pointed out by portscout-based service hosted by jasperla@ CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/09/04 15:41:43 Modified files: security/py-M2Crypto: Makefile distinfo security/py-M2Crypto/pkg: PLIST Removed files: security/py-M2Crypto/patches: patch-SWIG__ssl_i patch-tests_test_ssl_py Log message: Update py-M2Crypto to 0.22.3 - remove obsolete patches - set HOMEPAGE to Github, previous one is not reachable - remove post-build target because tests are not distributed anymore OK aja@ CVSROOT: /cvs Module name: ports Changes by: schwarze@cvs.openbsd.org 2014/09/04 18:45:58 Modified files: textproc/igor : Makefile distinfo Log message: update to 1.474: new options: -p (warn about mdoc(7) blank lines), -X (XML output) some new spelling errors and bad phrases, some additions to DocBook support ok afresh1@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/04 19:06:36 Modified files: share/man/man9 : if_rxr_init.9 Log message: functions are .Fn, not .Fa CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/04 19:54:15 Modified files: graphics/birdfont: Makefile distinfo graphics/birdfont/patches: patch-configure patch-dodo_py graphics/birdfont/pkg: PLIST Log message: Update to birdfont 1.0 CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/04 21:13:52 Modified files: sys/kern : subr_pool.c Log message: KASSERT that the page header pool will use in page headers. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 00:29:12 Modified files: multimedia/gstreamer-0.10: Makefile.inc Log message: Add PORTSCOUT annotations. CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/09/05 00:53:07 Modified files: gnu/usr.bin/perl: patchlevel.h gnu/usr.bin/perl/cpan/libnet: Changes Config.eg Makefile.PL README 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 dataconn.pm 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 Log message: update libnet to 1.27; various bugfixes and improvements: http://cpansearch.perl.org/src/SHAY/libnet-1.27/Changes ok millert@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 01:16:38 Modified files: usr.sbin/sysmerge: sysmerge.8 sysmerge.sh Log message: /etc/{hosts,myname} are going away from etc.tgz. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 01:22:29 Modified files: etc : Makefile distrib/miniroot: install.sh distrib/sets/lists/etc: mi Removed files: etc : hosts myname Log message: Remove /etc/{hosts,myname} from etc.tgz. Make the installer create the /etc/hosts template. While here, re-add a missing 'echo' from install.sh. ok miod@ krw@ halex@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/05 02:22:04 Modified files: audio/mumble : Makefile audio/mumble/pkg: PLIST Added files: audio/mumble/patches: patch-src_mumble_main_cpp Log message: Fix loading of translation files CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 02:27:20 Modified files: sysutils/salt : Makefile sysutils/salt/files: openbsdrcctl.py Added files: sysutils/salt/patches: patch-salt_states_service_py patch-tests_integration_modules_cmdmod_py patch-tests_integration_modules_file_py patch-tests_integration_modules_sysctl_py patch-tests_unit_utils_find_test_py Log message: Fix tests to properly recognize OpenBSD. openbsdrcctl: extend enabled() to check flags On OpenBSD, it's possible to define particular flags a daemon should be enabled with. To make sure the flags are properly updated when changed (in pillars or states), we return a service as "disabled" if the currently configured flags do not match the provided ones; this ensures /etc/rc.conf.local is always in sync. All patches merged upstream. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 02:28:12 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Tweaks, no functionnal change. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/05 03:47:27 Modified files: devel/hs-ConfigFile: Makefile distinfo Log message: Bugfix update to ConfigFile-1.1.2 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/05 03:48:13 Modified files: devel/hs-hslogger: Makefile distinfo Log message: Bugfix update to hslogger-1.2.4 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/05 03:49:00 Modified files: textproc/hs-libxml-sax: Makefile distinfo Log message: Bugfix update to libxml-sax-0.7.5 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/05 03:49:48 Modified files: x11/hs-dbus : Makefile distinfo Log message: Update to hs-dbus-0.10.8 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/05 03:50:18 Modified files: x11/xmobar : Makefile distinfo x11/xmobar/patches: patch-src_Plugins_Monitors_hs patch-xmobar_cabal Log message: Update to xmobar-0.21 CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/05 04:04:20 Modified files: usr.sbin/httpd : config.c httpd.c httpd.h parse.y server.c server_http.c Log message: Remove a limitation that only allowed to specify a server name once. The key has been changed to server name + address + port and now it is possible to use the same server name for multiple servers with different addresses, eg. http://www.example.com and https://www.example.com/. OK doug@ florian@ CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/09/05 04:19:26 Modified files: usr.sbin/relayd: parse.y relay.c relayd.conf.5 relayd.h Log message: revert previous; was based on a work-in-progress, as well as being an incomplete and therefore incorrect adaptation apologies to anybody who got bitten by this mistake ok reyk@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/05 04:35:31 Modified files: usr.sbin/sysmerge: sysmerge.8 Log message: tweak previous; CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/05 04:36:39 Modified files: usr.bin/libtool/LT: LaFile.pm usr.bin/libtool/LT/Mode: Install.pm Log message: recognize install-wrapper as a valid install program CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/09/05 06:57:53 Modified files: x11/spectrwm : Makefile distinfo Log message: Update for Spectrwm to 2.6.0: Improve English man page. fix typo s/fallowing/following/ Fix bug in baraction.sh that causes bar text to flicker every 20s. Fix man page to use escape codes for aring å and pi �^�. Add new quirk IGNOREPID. Add new quirk IGNORESPAWNWS. Fix stacking issue at (re)start when spawn_position = first or Convert all booleans to stdbool.h bool. Add new option: warp_pointer. Add new quirk: WS[n] Add new option: urgent_collapse cleanup baraction.sh Ok remi@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/05 07:18:41 Modified files: security/wpa_supplicant: Makefile security/wpa_supplicant/pkg: README Added files: security/wpa_supplicant/patches: patch-src_rsn_supp_wpa_c Log message: Fix validation of EAPOL-Key length with AES key wrap (upstream git commit b7c61c9d4e968e7254112631a9f6a1a1f8ef6f7f) pkg/README: avoid confusion, we were talking about so many interfaces... CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/05 07:52:19 Modified files: mail/procmail : Makefile mail/procmail/patches: patch-src_formisc_c Log message: fix CVE-2014-3618 in mail/procmail, heap overflow in formail when parsing addresses with unbalanced quotes. ok jca@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 08:06:33 Modified files: devel/py-gobject: Makefile Log message: Fix PORTSCOUT. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/05 08:36:47 Log message: import portroach-1.0.0, a fork of portscout focusing on OpenBSD support ok aja@ Status: Vendor Tag: jasper Release Tags: jasper_20140509 N ports/misc/portroach/Makefile N ports/misc/portroach/distinfo N ports/misc/portroach/patches/patch-README_md N ports/misc/portroach/patches/patch-portroach_conf_dist N ports/misc/portroach/pkg/DESCR N ports/misc/portroach/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/05 08:39:08 Modified files: misc : Makefile Removed files: misc/portscout : Makefile distinfo misc/portscout/patches: patch-portscout_conf patch-portscout_pod misc/portscout/pkg: DESCR PLIST Log message: portscout is dead, long live portroach! CVSROOT: /cvs Module name: src Changes by: jasper@cvs.openbsd.org 2014/09/05 08:39:16 Modified files: share/man/man5 : bsd.port.mk.5 Log message: PORTSCOUT -> PORTROACH CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/05 08:45:02 Modified files: databases/sqlports/files: Info.pm devel/libwnck : Makefile devel/appstream-glib: Makefile devel/py-gobject: Makefile devel/vte : Makefile infrastructure/mk: bsd.port.mk security/p11-kit: Makefile www/gtkhtml3 : Makefile www/gtkhtml4 : Makefile www/webkit : Makefile textproc/gtkspell: Makefile x11/gnome : gnome.port.mk multimedia/gstreamer-0.10: Makefile.inc Log message: PORTSCOUT -> PORTROACH CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/05 09:06:05 Modified files: usr.sbin/httpd : http.h server_http.c Log message: Add various RFC-based WebDAV methods to the list of accepted HTTP methods. This fixes (Fast)CGI-based WebDAV and CalDAV (calendar) servers with httpd. ok benno@ stsp@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/05 09:29:41 Modified files: multimedia/x265/patches: patch-source_CMakeLists_txt patch-source_common_version_cpp Log message: Sync one of the patches with what was commited upstream and add URLs to the commited patches. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/05 09:52:16 Modified files: misc/portroach : Makefile Added files: misc/portroach/patches: patch-Portroach_SiteHandler_CPAN_pm Log message: Ensure we only add a download url for actual hits on CPAN CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/05 10:43:20 Modified files: security/cracklib: Makefile distinfo Log message: Update cracklib to 2.9.1. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 10:59:46 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Spring cleanup in preparation for more changes. Lots of moving around. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 11:19:48 Modified files: usr.sbin/sysmerge: sysmerge.8 sysmerge.sh Log message: Drop support for sendmail(8) -- hopefully it'll go away from base soon. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 11:22:10 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Sync _ignorefiles. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 11:26:08 Modified files: usr.sbin/sysmerge: sysmerge.8 sysmerge.sh Log message: Drop support for SM_MERGE. The goal is to be a less interactive as possible so there is no point in allowing graphical merge tools to be used; especially since it is _completely_ untested... CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/05 11:39:03 Modified files: graphics/dia : Makefile distinfo graphics/dia/pkg: PLIST Removed files: graphics/dia/patches: patch-app_render_gdk_c patch-objects_custom_shape_typeinfo_c patch-plug-ins_cairo_diacairo-renderer_c patch-plug-ins_pgf_render_pgf_c patch-plug-ins_postscript_diapsft2renderer_c patch-plug-ins_vdx_vdx_c patch-plug-ins_xfig_xfig_c patch-tests_test-boundingbox_c patch-tests_test-objects_c Log message: Update to dia-0.97.3. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/05 13:17:37 Modified files: telephony/asterisk: Makefile Log message: +PORTROACH CVSROOT: /cvs Module name: src Changes by: chris@cvs.openbsd.org 2014/09/05 13:32:25 Modified files: sys/dev/pci : pcidevs Log message: Another Intel 10GbE CVSROOT: /cvs Module name: src Changes by: chris@cvs.openbsd.org 2014/09/05 13:34:01 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: sync CVSROOT: /cvs Module name: ports Changes by: matthieu@cvs.openbsd.org 2014/09/05 13:42:28 Modified files: misc : Makefile Log message: Unlink omconsole. ok jasper@x CVSROOT: /cvs Module name: ports Changes by: matthieu@cvs.openbsd.org 2014/09/05 13:43:43 Removed files: misc/omconsole : Makefile distinfo misc/omconsole/pkg: DESCR PLIST Log message: Remove omconsole. Ok jasper@ CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/09/05 14:01:49 Modified files: sys/dev/pci : vioblk.c Log message: Don't bother messing with minphys, we always need to support transfers of size MAXBSIZE. If the number of DMA segments supported by the device is too low, don't use it. Discussion at http://marc.info/?l=openbsd-tech&m=140978303923966&w=2 CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/05 16:11:38 Modified files: multimedia/livestreamer: Makefile distinfo multimedia/livestreamer/pkg: PLIST Log message: Update to 1.10.2 CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/05 22:05:40 Modified files: sbin/fsck_ffs : dir.c extern.h fsck.h inode.c pass1.c pass2.c pass5.c setup.c utilities.c Log message: inodesc.id_entryno holds a file size, so upgrade it from int to u_int64_t; this fixes handling of very large files on FFS2. Correct a copy-n-pasto that rendered useless the check for allocated fragmented that are marked free in the bitmap. allocdir() returns an inode number, so return an ino_t. sizeof()*N should be printed with %zu, while direct and indirect block numbers should be cast to (long long) use %lld inodesc.id_entryno fix based on a diff from David Vasek ok krw@ otto@ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/05 22:46:58 Modified files: sys/dev/pci : if_re_pci.c sys/dev/cardbus: if_re_cardbus.c sys/dev/ic : re.c rtl81x9reg.h Log message: Various changes to the re(4) feature flags.. Changed RL_FLAG_MACLDPS to RL_FLAG_MACRESET. Removed RL_FLAG_INVMAR and RL_FLAG_NOJUMBO. Added RL_FLAG_FASTETHER, RL_FLAG_CMDSTOP_WAIT_TXQ, RL_FLAG_JUMBOV2, RL_FLAG_WOL_MANLINK, RL_FLAG_WAIT_TXPOLL, RL_FLAG_WOLRXENB. Also set in the softc the maximum MTU for the various generations of chips. Input from and Ok jsg@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/05 23:41:35 Modified files: sys/dev/ic : acx.c bwi.c mtd8xx.c mtd8xxvar.h rt2560.c rt2661.c rt2860.c rtl81x9.c Log message: reduce the amount of pci includes CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/06 00:00:54 Modified files: sys/dev/pci : agp_i810.c Log message: Match q33 devices. Previously only inteldrm matched on q33, which would lead to a panic. Problem reported by karlis.mikelsons at lf.lv. CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/09/06 01:03:52 Log message: Import synfig-0.64.1. synfig is a vector based 2D animation package. It is designed to be capable of producing feature-film quality animation. It eliminates the need for tweening, preventing the need to hand-draw each frame. synfig features spatial and temporal resolution independence (sharp and smooth at any resolution or framerate), high dynamic range images, and a flexible plugin system. This package contains the renderer used to convert synfig .sif files to raster images, videos and other formats. Layer types include geometric, gradient, filter, distortion, transformation, fractal and others. Output targets include JPEG, PNG, GIF, BMP, PPM, DV, OpenEXR, ffmpeg (MPEG1), libavcodec (AVI), imagemagick (MIFF), yuv420p, MNG and others. ok jca@ Status: Vendor Tag: bentley Release Tags: bentley_20140906 N ports/multimedia/synfig/Makefile N ports/multimedia/synfig/distinfo N ports/multimedia/synfig/pkg/PLIST N ports/multimedia/synfig/pkg/PFRAG.shared N ports/multimedia/synfig/pkg/DESCR N ports/multimedia/synfig/patches/patch-src_modules_Makefile_in N ports/multimedia/synfig/patches/patch-src_synfig_main_cpp No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/09/06 01:05:10 Log message: Import synfigstudio-0.64.1. synfig is a vector based 2D animation package. It is designed to be capable of producing feature-film quality animation. It eliminates the need for tweening, preventing the need to hand-draw each frame. synfig features spatial and temporal resolution independence (sharp and smooth at any resolution or framerate), high dynamic range images, and a flexible plugin system. synfigstudio is the animation studio for synfig and provides the GUI interface to create synfig animations which are saved in synfig .sif or .sifz format. ok jca@ Status: Vendor Tag: bentley Release Tags: bentley_20140906 N ports/multimedia/synfigstudio/Makefile N ports/multimedia/synfigstudio/distinfo N ports/multimedia/synfigstudio/patches/patch-src_synfigapp_cvs_cpp N ports/multimedia/synfigstudio/patches/patch-src_gui_app_cpp N ports/multimedia/synfigstudio/patches/patch-src_gui_autorecover_cpp N ports/multimedia/synfigstudio/pkg/PLIST N ports/multimedia/synfigstudio/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/09/06 01:06:02 Modified files: multimedia : Makefile Log message: +synfig{,studio} CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/06 01:09:34 Modified files: security/zebedee: Makefile distinfo security/zebedee/patches: patch-Makefile Log message: Update zebedee to 2.5.3. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/06 01:20:30 Modified files: www/ruby-jekyll: Makefile Log message: drop maintainership as I've not been using this for a while now. any takers? CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/06 01:20:54 Modified files: sysutils/p5-Sys-Virt: Makefile distinfo Log message: update to p5-Sys-Virt-1.2.8 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/06 01:21:05 Modified files: security/p11-kit: Makefile distinfo security/p11-kit/pkg: PLIST Log message: Update to p11-kit-0.20.5. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/06 01:24:37 Modified files: sysutils/ruby-puppet-lint: Makefile distinfo sysutils/ruby-puppet-lint/pkg: PLIST Log message: update to puppet-lint-1.0.1 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/06 01:25:29 Modified files: games/childsplay: Makefile distinfo Log message: Update to childsplay-2.6.4. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/06 01:25:55 Modified files: textproc/py-docutils: Makefile distinfo Log message: Update py-docutils to 0.12, from frantisek holo CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/06 01:37:27 Modified files: devel/yasm : Makefile distinfo Log message: Update to yasm 1.3.0. ok daniel@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/06 01:44:53 Modified files: mail/pyzor : Makefile distinfo mail/pyzor/pkg : PLIST Log message: Update pyzor to 0.7.0. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/06 01:58:16 Modified files: devel/ruby-rgen: Makefile distinfo Log message: update to ruby-rgen-0.7.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/06 02:48:04 Log message: import darkhttpd-1.10 Simple, small and efficient webserver intended for ad-hoc usage. ok aja@ Status: Vendor Tag: jasper Release Tags: jasper_20140609 N ports/www/darkhttpd/Makefile N ports/www/darkhttpd/distinfo N ports/www/darkhttpd/pkg/DESCR N ports/www/darkhttpd/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/06 02:48:56 Modified files: www : Makefile Log message: +darkhttpd CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/06 03:18:56 Modified files: multimedia/synfig: Makefile multimedia/synfig/pkg: PLIST Removed files: multimedia/synfig/patches: patch-src_modules_Makefile_in multimedia/synfig/pkg: PFRAG.shared Log message: Set SHARED_ONLY and drop .la and .a module files. Strip LIB_DEPENDS. Add CPPFLAGS to use our libltdl headers instead of the bundled ones. Drop patch and use FAKE_FLAGS instead. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/06 03:22:40 Modified files: sys/arch/powerpc/include: cpu.h sys/arch/powerpc/powerpc: cpu_subr.c Log message: Add functions to manipulate IBM PowerPC 970 specific registers that will be used in upcoming MP and idle support. ok miod@ CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2014/09/06 03:23:00 Modified files: devel/yaml-cpp : Makefile distinfo devel/yaml-cpp/pkg: PLIST Log message: now that graphics/opencolorio has been patched for newer yaml-cpp update yaml-cpp to 0.5.1 with input from bcallah@ ok jasper@ CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2014/09/06 03:32:21 Modified files: games/openxcom : Makefile distinfo games/openxcom/patches: patch-CMakeLists_txt patch-src_CMakeLists_txt patch-src_Engine_CrossPlatform_cpp games/openxcom/pkg: PLIST Added files: games/openxcom/files: cpuid.h games/openxcom/patches: patch-src_Engine_Zoom_cpp Log message: update to OpenXcom 1.0 with input from bcallah@ earlier version ok jasper@ kirby@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/06 03:42:23 Modified files: sys/arch/macppc/macppc: locore.S sys/arch/powerpc/ddb: db_trace.c sys/arch/powerpc/powerpc: trap.c sys/arch/socppc/socppc: locore.S Log message: Rewrite the PowerPC stack dump routine to delimit the trap & interrupt contexts with markers (---like on x86---) and print the associated type or number when available. While here, gyp' the support for process tracing (tr /p). ok miod@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/06 04:15:52 Modified files: sys/arch/macppc/macppc: cpu.c genassym.cf locore.S sys/arch/powerpc/include: cpu.h sys/arch/powerpc/powerpc: cpu_subr.c sys/arch/socppc/socppc: cpu.c genassym.cf locore.S Log message: Rewrite cpu_idle & friends to not check and update the hid0 register in the idle loop, in preparation for G5 support. Only do a disable/enable interrupt dance if the running CPU supports a sleep mode. Fix entering ddb(8) from interrupt context by not modifying the return address of the 'forced' trap frame. While here, modify the existing logic to terminate prefetching of all data streams if AltiVec is supported before setting the POW bit. With inputs/explanations from drahn, looks ok to miod@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/06 04:18:34 Modified files: sys/dev/adb : akbdmap.h Log message: Magical sequences to ender ddb(4) from an ADB keyboard. This is possible now that the idle (sleeping) flag is cleared by the deliberate ddb entry. ok miod@ CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/06 04:38:02 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Files may have been removed in the previous step, so make sure they exist before trying to remove them again. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/06 04:43:24 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Remove backup checksums after a successfull run. CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/06 04:45:29 Modified files: sys/arch/macppc/dev: macintr.c openpic.c sys/arch/macppc/macppc: genassym.cf locore.S sys/arch/powerpc/include: cpu.h sys/arch/socppc/socppc: genassym.cf locore.S machdep.c Log message: Rename ci_iactive into ci_flags, this field now holds the going-to- sleep bit. CVSROOT: /cvs Module name: ports Changes by: armani@cvs.openbsd.org 2014/09/06 05:53:05 Modified files: devel : Makefile Removed files: devel/ctm : Makefile distinfo devel/ctm/patches: patch-ctm_README patch-ctm_ctm_Makefile patch-ctm_ctm_ctm_1 patch-ctm_ctm_ctm_5 patch-ctm_ctm_ctm_c patch-ctm_ctm_ctm_ed_c patch-ctm_ctm_ctm_h patch-ctm_ctm_ctm_pass1_c patch-ctm_ctm_ctm_pass2_c patch-ctm_ctm_ctm_pass3_c patch-ctm_ctm_ctm_passb_c patch-ctm_ctm_ctm_syntax_c patch-ctm_ctm_rmail_Makefile patch-ctm_ctm_rmail_ctm_rmail_1 patch-ctm_ctm_rmail_ctm_rmail_c devel/ctm/pkg : DESCR PLIST Log message: Remove devel/ctm, openbsd.org/ctm.html was removed 5 years ago and upstream seems to not exist anymore "you can nuke it" espie@, ok jca@ CVSROOT: /cvs Module name: ports Changes by: armani@cvs.openbsd.org 2014/09/06 05:55:47 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: Add entry for ctm removal. While there add an entry that was missed in last commit. ctm entry probbed by sthen@ and ok jca@ missed entry ok jasper@ CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2014/09/06 07:06:27 Modified files: devel/yaml-cpp : Makefile Log message: Fix MASTER_SITES, not noticed here as I still had the distfile around from a few months ago. Problem noticed by naddy@ CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2014/09/06 07:59:35 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 Added files: . : errata56.html Log message: roll the errata pages for 5.6 and add the rx ring errata for 5.6 CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2014/09/06 08:12:17 Modified files: . : security.html Log message: roll for 5.6 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/06 08:48:00 Modified files: misc/portroach : Makefile distinfo misc/portroach/patches: patch-portroach_conf_dist misc/portroach/pkg: PLIST Removed files: misc/portroach/patches: patch-Portroach_SiteHandler_CPAN_pm patch-README_md Log message: - update to portroach-1.1.0 * reworked generated webpages * add npmjs handler CVSROOT: /cvs Module name: ports Changes by: schwarze@cvs.openbsd.org 2014/09/06 09:49:50 Modified files: security/p5-Authen-NTLM: Makefile distinfo Log message: Update to Authen::NTLM 1.09 (minor bugfix release); ok gsoares@ I'm quite happy that nobody forces me to use NTLM any longer, and i'm certainly not using it voluntarily, so drop MAINTAINER. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/06 10:08:58 Modified files: app/cwm : calmwm.h group.c mousefunc.c xevents.c xutil.c Log message: Rework group names: stash the group name inside the group_ctx as opposed to having to manage an array outside in screen_ctx for group names and shortcuts. Simplifies (and moves bits for) reading, and constructing data for, EWMH's _NET_DESKTOP_NAMES. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/06 10:14:35 Modified files: app/cwm : calmwm.h conf.c kbfunc.c Log message: Move termpath and lockpath into cmdq; side effect is that 'lock' and 'term' now show up in the application menu. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/06 10:18:08 Modified files: app/cwm : menu.c Log message: style nit CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/06 10:24:32 Modified files: app/cwm : calmwm.c Log message: generic sighandler CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/06 12:50:43 Modified files: app/cwm : kbfunc.c Log message: Few style nits; extend 'path' to MAXPATHLEN. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/09/06 14:47:44 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Convert vars used as boolean (unset or 1) to true or false. OK ajacoutot@ CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/09/06 15:46:15 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Replace awk with either sed or shell equivalents. OK ajacoutot@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/06 16:38:35 Modified files: usr.bin/mandoc : libmandoc.h read.c roff.c Log message: Move main format autodetection from the parser dispatcher to the roff parser where .Dd and .TH are already detected, anyway. This improves robustness because it correctly handles whitespace or an alternate control character before Dd. In the parser dispatcher, provide a fallback looking ahead in the input buffer instead of always assuming man(7). This corrects autodetection when Dd is preceded by other macros or macro-like handled requests like .ll. Triggered by reports from Daniel Levai about issues on Slackware Linux. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/06 17:24:27 Modified files: usr.bin/mandoc : man.c mdoc.c read.c roff.c Log message: Simplify by handling empty request lines at the one logical place in the roff parser instead of in three other places in other parsers. No functional change. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/06 18:04:47 Modified files: usr.bin/mandoc : mdoc_macro.c mdoc_validate.c Log message: Allow .ll in the prologue; Daniel Levai reports Slackware Linux uses this. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/06 18:21:23 Modified files: share/man/man7 : roff.7 usr.bin/mandoc : roff.c Log message: Parse and ignore the .pl (page length) request; Daniel Levai reports that Slackware Linux uses this. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/06 20:17:36 Modified files: usr.bin/mandoc : read.c Log message: always use the right buffer, and fix one evil typo CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/06 21:00:03 Modified files: usr.bin/mandoc : mandocdb.c Log message: fix debugging output CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/06 21:07:16 Modified files: sys/conf : Tag: OPENBSD_5_6 newvers.sh Log message: 5.6-stable CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/06 21:08:42 Modified files: usr.bin/mandoc : mandocdb.c Log message: Do not report a page as arch=any merely because .Dt lacks the third argument. Pages found outside arch-specific dirs still get arch=any, of course. Issue reported by justinhenryhaynes at gmail dot com on misc@, thanks! CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/06 21:15:42 Modified files: sys/dev/pci : Tag: OPENBSD_5_6 if_bge.c if_em.c if_ix.c Log message: OpenBSD 5.6 errata 1: Incorrect RX ring computation leads to panics under load with bge(4), em(4) and ix(4). CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:09 src/regress/libexec/ld.so/dependencies Update of /cvs/src/regress/libexec/ld.so/dependencies In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:10 src/regress/libexec/ld.so/dependencies/order1 Update of /cvs/src/regress/libexec/ld.so/dependencies/order1 In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies/order1 Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies/order1 added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:11 src/regress/libexec/ld.so/dependencies/order2 Update of /cvs/src/regress/libexec/ld.so/dependencies/order2 In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies/order2 Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies/order2 added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:12 src/regress/libexec/ld.so/dependencies/order1/libaa Update of /cvs/src/regress/libexec/ld.so/dependencies/order1/libaa In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies/order1/libaa Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies/order1/libaa added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:13 src/regress/libexec/ld.so/dependencies/order1/libbb Update of /cvs/src/regress/libexec/ld.so/dependencies/order1/libbb In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies/order1/libbb Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies/order1/libbb added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:14 src/regress/libexec/ld.so/dependencies/order1/prog1 Update of /cvs/src/regress/libexec/ld.so/dependencies/order1/prog1 In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies/order1/prog1 Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies/order1/prog1 added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:15 src/regress/libexec/ld.so/dependencies/order2/libaa Update of /cvs/src/regress/libexec/ld.so/dependencies/order2/libaa In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies/order2/libaa Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies/order2/libaa added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:16 src/regress/libexec/ld.so/dependencies/order2/libbb Update of /cvs/src/regress/libexec/ld.so/dependencies/order2/libbb In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies/order2/libbb Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies/order2/libbb added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:11:17 src/regress/libexec/ld.so/dependencies/order2/prog1 Update of /cvs/src/regress/libexec/ld.so/dependencies/order2/prog1 In directory cvs.openbsd.org:/tmp/cvs-serv12401/dependencies/order2/prog1 Log Message: Directory /cvs/src/regress/libexec/ld.so/dependencies/order2/prog1 added to the repository CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:13:52 Added files: regress/libexec/ld.so/dependencies: Makefile regress/libexec/ld.so/dependencies/order1: Makefile Makefile.inc regress/libexec/ld.so/dependencies/order1/libaa: Makefile aa.c shlib_version regress/libexec/ld.so/dependencies/order1/libbb: Makefile bb.c shlib_version regress/libexec/ld.so/dependencies/order1/prog1: Makefile main.c regress/libexec/ld.so/dependencies/order2: Makefile Makefile.inc regress/libexec/ld.so/dependencies/order2/libaa: Makefile aa.c shlib_version regress/libexec/ld.so/dependencies/order2/libbb: Makefile bb.c shlib_version regress/libexec/ld.so/dependencies/order2/prog1: Makefile main.c Log message: Add dependency tests from Henri Kemppainen (duclare (at) guu.fi). order1 demonstrates why the fix in ld.so/library_subr.c rev 1.34 is necessary order2 demonstrates that that fix isn't completely correct CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/06 22:14:25 Modified files: regress/libexec/ld.so: Makefile Log message: Add dependency tests from Henri Kemppainen (duclare (at) guu.fi) CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/07 00:40:01 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Simplify checks. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/07 00:53:16 Modified files: regress/libexec/ld.so/dependencies/order1/libaa: aa.c regress/libexec/ld.so/dependencies/order1/libbb: bb.c regress/libexec/ld.so/dependencies/order1/prog1: main.c regress/libexec/ld.so/dependencies/order2/libaa: aa.c regress/libexec/ld.so/dependencies/order2/libbb: bb.c regress/libexec/ld.so/dependencies/order2/prog1: main.c Log message: Add Henri Kemppainen's copyright CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/07 01:46:26 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Use shell substitution instead of dirname. Fix installing pkg @sample when the target directory is missing. Fix output when a file fails to install. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/07 02:15:42 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Fix regression in detecting changed files. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/07 02:17:44 Modified files: sys/uvm : uvm_fault.c Log message: typo in comment CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/07 02:39:04 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Consistency in var names. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/07 03:07:27 Modified files: net/samba4 : Makefile distinfo net/samba4/pkg : PLIST-main Log message: update to samba4 4.0.21, fixes http://www.samba.org/samba/security/CVE-2014-3560 From Ian Mcwilliam, jca@ thinks this should go in too CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/07 03:11:40 Modified files: www/py-jinja2 : Makefile distinfo www/py-jinja2/patches: patch-jinja2_bccache_py Log message: update to py-jinja2 2.7.3, from frantisek holop the only change is a fix for the insecure tempdir creation bug that we already had a different fix for in patches CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/07 03:13:03 Modified files: www/py-beautifulsoup: Makefile Log message: MASTER_SITES tweak from frantisek holop whitespace tweak from me CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/07 03:21:42 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Drop 2 uneeded xargs(1). CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/07 03:46:32 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Only compare CVS Id when it's not empty. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/07 04:12:17 Modified files: lib/libsndio : aucat.c Log message: Use SOCK_CLOEXEC (instead of later using fcntl(F_SETFD)) when creating sockets for talking to aucat/sndiod ok ratchov@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/07 04:54:15 Modified files: www/p5-URI : Makefile distinfo Log message: update to p5-URI 1.64, from Mark Patruck CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/07 04:55:37 Modified files: devel/p5-common-sense: Makefile distinfo devel/p5-common-sense/pkg: PLIST Log message: update to p5-common-sense 3.73, from Mark Patruck CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/07 04:59:42 Modified files: converters/p5-Net-IDN-Encode: Makefile distinfo converters/p5-Net-IDN-Encode/pkg: PLIST Log message: update to p5-Net-IDN-Encode 2.005 (newer version that works with Module::Build <0.42), from Mark Patruck CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/07 05:41:49 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Remove last use of xargs(1). CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/07 06:16:23 Modified files: lib/libssl/src/ssl: d1_clnt.c d1_srvr.c s3_clnt.c s3_lib.c s3_srvr.c ssl_ciph.c ssl_lib.c ssl_locl.h Log message: Remove SSL_kDHr, SSL_kDHd and SSL_aDH. No supported ciphersuites use them, nor do we plan on supporting them. ok guenther@ CVSROOT: /cvs Module name: xenocara Changes by: jsg@cvs.openbsd.org 2014/09/07 09:09:05 Log message: Import Mesa 10.2.7 Status: Vendor Tag: mesa Release Tags: v10_2_7 U xenocara/dist/Mesa/aclocal.m4 U xenocara/dist/Mesa/configure U xenocara/dist/Mesa/Makefile.in U xenocara/dist/Mesa/Android.common.mk U xenocara/dist/Mesa/Android.mk U xenocara/dist/Mesa/Makefile.am U xenocara/dist/Mesa/SConstruct U xenocara/dist/Mesa/VERSION U xenocara/dist/Mesa/autogen.sh U xenocara/dist/Mesa/common.py C xenocara/dist/Mesa/configure.ac U xenocara/dist/Mesa/install-gallium-links.mk U xenocara/dist/Mesa/install-lib-links.mk U xenocara/dist/Mesa/bin/ar-lib U xenocara/dist/Mesa/bin/compile C xenocara/dist/Mesa/bin/config.guess C xenocara/dist/Mesa/bin/config.sub U xenocara/dist/Mesa/bin/depcomp U xenocara/dist/Mesa/bin/install-sh U xenocara/dist/Mesa/bin/ltmain.sh U xenocara/dist/Mesa/bin/missing U xenocara/dist/Mesa/bin/test-driver U xenocara/dist/Mesa/bin/bugzilla_mesa.sh U xenocara/dist/Mesa/bin/get-pick-list.sh U xenocara/dist/Mesa/bin/perf-annotate-jit U xenocara/dist/Mesa/bin/shortlog_mesa.sh U xenocara/dist/Mesa/src/Makefile.in U xenocara/dist/Mesa/src/Makefile.am U xenocara/dist/Mesa/src/SConscript U xenocara/dist/Mesa/src/egl/drivers/dri2/Makefile.in U xenocara/dist/Mesa/src/egl/drivers/dri2/Android.mk U xenocara/dist/Mesa/src/egl/drivers/dri2/Makefile.am C xenocara/dist/Mesa/src/egl/drivers/dri2/egl_dri2.c U xenocara/dist/Mesa/src/egl/drivers/dri2/egl_dri2.h U xenocara/dist/Mesa/src/egl/drivers/dri2/egl_dri2_fallbacks.h U xenocara/dist/Mesa/src/egl/drivers/dri2/platform_android.c U xenocara/dist/Mesa/src/egl/drivers/dri2/platform_drm.c U xenocara/dist/Mesa/src/egl/drivers/dri2/platform_wayland.c U xenocara/dist/Mesa/src/egl/drivers/dri2/platform_x11.c U xenocara/dist/Mesa/src/egl/main/Makefile.in U xenocara/dist/Mesa/src/egl/main/Android.mk U xenocara/dist/Mesa/src/egl/main/Makefile.am U xenocara/dist/Mesa/src/egl/main/README.txt U xenocara/dist/Mesa/src/egl/main/SConscript U xenocara/dist/Mesa/src/egl/main/egl.def U xenocara/dist/Mesa/src/egl/main/egl.pc.in U xenocara/dist/Mesa/src/egl/main/eglapi.c U xenocara/dist/Mesa/src/egl/main/eglapi.h U xenocara/dist/Mesa/src/egl/main/eglarray.c U xenocara/dist/Mesa/src/egl/main/eglarray.h U xenocara/dist/Mesa/src/egl/main/eglcompiler.h U xenocara/dist/Mesa/src/egl/main/eglconfig.c U xenocara/dist/Mesa/src/egl/main/eglconfig.h C xenocara/dist/Mesa/src/egl/main/eglcontext.c U xenocara/dist/Mesa/src/egl/main/eglcontext.h U xenocara/dist/Mesa/src/egl/main/eglcurrent.c U xenocara/dist/Mesa/src/egl/main/eglcurrent.h U xenocara/dist/Mesa/src/egl/main/egldefines.h U xenocara/dist/Mesa/src/egl/main/egldisplay.c U xenocara/dist/Mesa/src/egl/main/egldisplay.h U xenocara/dist/Mesa/src/egl/main/egldriver.c U xenocara/dist/Mesa/src/egl/main/egldriver.h U xenocara/dist/Mesa/src/egl/main/eglfallbacks.c U xenocara/dist/Mesa/src/egl/main/eglglobals.c U xenocara/dist/Mesa/src/egl/main/eglglobals.h U xenocara/dist/Mesa/src/egl/main/eglimage.c U xenocara/dist/Mesa/src/egl/main/eglimage.h U xenocara/dist/Mesa/src/egl/main/egllog.c U xenocara/dist/Mesa/src/egl/main/egllog.h U xenocara/dist/Mesa/src/egl/main/eglmisc.c U xenocara/dist/Mesa/src/egl/main/eglmisc.h U xenocara/dist/Mesa/src/egl/main/eglmode.c U xenocara/dist/Mesa/src/egl/main/eglmode.h U xenocara/dist/Mesa/src/egl/main/eglmutex.h U xenocara/dist/Mesa/src/egl/main/eglscreen.c U xenocara/dist/Mesa/src/egl/main/eglscreen.h U xenocara/dist/Mesa/src/egl/main/eglstring.c U xenocara/dist/Mesa/src/egl/main/eglstring.h U xenocara/dist/Mesa/src/egl/main/eglsurface.c U xenocara/dist/Mesa/src/egl/main/eglsurface.h U xenocara/dist/Mesa/src/egl/main/eglsync.c U xenocara/dist/Mesa/src/egl/main/eglsync.h U xenocara/dist/Mesa/src/egl/main/egltypedefs.h U xenocara/dist/Mesa/src/egl/wayland/Makefile.in U xenocara/dist/Mesa/src/egl/wayland/Makefile.am U xenocara/dist/Mesa/src/egl/wayland/wayland-drm/Makefile.in U xenocara/dist/Mesa/src/egl/wayland/wayland-drm/Makefile.am U xenocara/dist/Mesa/src/egl/wayland/wayland-drm/wayland-drm.c U xenocara/dist/Mesa/src/egl/wayland/wayland-drm/wayland-drm.h U xenocara/dist/Mesa/src/egl/wayland/wayland-drm/wayland-drm.xml U xenocara/dist/Mesa/src/egl/wayland/wayland-egl/Makefile.in U xenocara/dist/Mesa/src/egl/wayland/wayland-egl/Makefile.am U xenocara/dist/Mesa/src/egl/wayland/wayland-egl/wayland-egl-priv.h U xenocara/dist/Mesa/src/egl/wayland/wayland-egl/wayland-egl-symbols-check U xenocara/dist/Mesa/src/egl/wayland/wayland-egl/wayland-egl.c U xenocara/dist/Mesa/src/egl/wayland/wayland-egl/wayland-egl.pc.in U xenocara/dist/Mesa/src/egl/docs/EGL_MESA_screen_surface U xenocara/dist/Mesa/src/gallium/Android.common.mk U xenocara/dist/Mesa/src/gallium/Android.mk U xenocara/dist/Mesa/src/gallium/Automake.inc U xenocara/dist/Mesa/src/gallium/README.portability U xenocara/dist/Mesa/src/gallium/SConscript U xenocara/dist/Mesa/src/gallium/auxiliary/Makefile.in U xenocara/dist/Mesa/src/gallium/auxiliary/Android.mk U xenocara/dist/Mesa/src/gallium/auxiliary/Makefile.am U xenocara/dist/Mesa/src/gallium/auxiliary/Makefile.sources U xenocara/dist/Mesa/src/gallium/auxiliary/SConscript U xenocara/dist/Mesa/src/gallium/auxiliary/pipe-loader/Makefile.in U xenocara/dist/Mesa/src/gallium/auxiliary/pipe-loader/Makefile.am U xenocara/dist/Mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.h U xenocara/dist/Mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_priv.h U xenocara/dist/Mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c U xenocara/dist/Mesa/src/gallium/auxiliary/cso_cache/cso_cache.c U xenocara/dist/Mesa/src/gallium/auxiliary/cso_cache/cso_cache.h U xenocara/dist/Mesa/src/gallium/auxiliary/cso_cache/cso_context.c U xenocara/dist/Mesa/src/gallium/auxiliary/cso_cache/cso_context.h U xenocara/dist/Mesa/src/gallium/auxiliary/cso_cache/cso_hash.c U xenocara/dist/Mesa/src/gallium/auxiliary/cso_cache/cso_hash.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_cliptest_tmp.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_context.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_context.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_decompose_tmp.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_fs.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_fs.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_gs.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_gs.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_gs_tmp.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_llvm.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_llvm.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_llvm_sample.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_aaline.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_aapoint.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_clip.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_cull.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_flatshade.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_private.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_offset.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_pstipple.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_stipple.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_twoside.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_unfilled.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_util.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_validate.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_vbuf.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_wide_line.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pipe_wide_point.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_prim_assembler.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_prim_assembler.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_prim_assembler_tmp.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_decompose.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_vbuf.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_emit.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_fetch.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_fetch_emit.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_emit.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline_llvm.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_post_vs.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_so_emit.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_util.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_vsplit.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_pt_vsplit_tmp.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_so_emit_tmp.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_split_tmp.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_vertex.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_vertex.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_vs.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_vs.h U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_vs_exec.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_vs_llvm.c U xenocara/dist/Mesa/src/gallium/auxiliary/draw/draw_vs_variant.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/f.cpp U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_const.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_const.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.h C xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_format.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos_array.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_format_float.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_format_soa.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_format_srgb.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_format_yuv.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_init.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_init.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_limits.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.h C xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.h C xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_action.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_action.h U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_aos.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_info.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_type.c U xenocara/dist/Mesa/src/gallium/auxiliary/gallivm/lp_bld_type.h U xenocara/dist/Mesa/src/gallium/auxiliary/hud/font.c U xenocara/dist/Mesa/src/gallium/auxiliary/hud/font.h U xenocara/dist/Mesa/src/gallium/auxiliary/hud/hud_context.c U xenocara/dist/Mesa/src/gallium/auxiliary/hud/hud_context.h U xenocara/dist/Mesa/src/gallium/auxiliary/hud/hud_cpu.c U xenocara/dist/Mesa/src/gallium/auxiliary/hud/hud_driver_query.c U xenocara/dist/Mesa/src/gallium/auxiliary/hud/hud_fps.c U xenocara/dist/Mesa/src/gallium/auxiliary/hud/hud_private.h U xenocara/dist/Mesa/src/gallium/auxiliary/indices/u_indices.c U xenocara/dist/Mesa/src/gallium/auxiliary/indices/u_indices.h U xenocara/dist/Mesa/src/gallium/auxiliary/indices/u_indices_gen.py U xenocara/dist/Mesa/src/gallium/auxiliary/indices/u_indices_priv.h U xenocara/dist/Mesa/src/gallium/auxiliary/indices/u_primconvert.c U xenocara/dist/Mesa/src/gallium/auxiliary/indices/u_primconvert.h U xenocara/dist/Mesa/src/gallium/auxiliary/indices/u_unfilled_gen.py U xenocara/dist/Mesa/src/gallium/auxiliary/indices/u_unfilled_indices.c U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_memory.h U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_memory_aligned.h U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_memory_debug.h U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_memory_stdc.h U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_misc.c U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_misc.h U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_mman.h U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_process.c U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_process.h U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_thread.h U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_time.c U xenocara/dist/Mesa/src/gallium/auxiliary/os/os_time.h U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_buffer.h U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.h U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_malloc.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr.h U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_alt.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_cache.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_ondemand.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_pool.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_validate.c U xenocara/dist/Mesa/src/gallium/auxiliary/pipebuffer/pb_validate.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/ADDING U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/filters.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/postprocess.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_celshade.c U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_celshade.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_colors.c U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_colors.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_filters.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_init.c U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_mlaa.c U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_mlaa.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_mlaa_areamap.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_private.h U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_program.c U xenocara/dist/Mesa/src/gallium/auxiliary/postprocess/pp_run.c U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/README U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug.h U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_connection.c U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_connection.h U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_context.c U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_context.h U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_core.c U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_core.h U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_demarshal.c U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_internal.h U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_proto.h U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_shader.c U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_shader.h U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_texture.c U xenocara/dist/Mesa/src/gallium/auxiliary/rbug/rbug_texture.h U xenocara/dist/Mesa/src/gallium/auxiliary/rtasm/rtasm_cpu.c U xenocara/dist/Mesa/src/gallium/auxiliary/rtasm/rtasm_cpu.h U xenocara/dist/Mesa/src/gallium/auxiliary/rtasm/rtasm_execmem.c U xenocara/dist/Mesa/src/gallium/auxiliary/rtasm/rtasm_execmem.h U xenocara/dist/Mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.c U xenocara/dist/Mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.h U xenocara/dist/Mesa/src/gallium/auxiliary/target-helpers/inline_debug_helper.h U xenocara/dist/Mesa/src/gallium/auxiliary/target-helpers/inline_sw_helper.h U xenocara/dist/Mesa/src/gallium/auxiliary/target-helpers/inline_wrapper_sw_helper.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_build.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_build.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_dump.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_dump.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_exec.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_exec.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_info.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_info.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_iterate.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_iterate.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_opcode_tmp.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_parse.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_parse.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_sanity.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_sanity.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_scan.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_scan.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_strings.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_strings.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_text.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_text.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_transform.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_transform.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.h U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_util.c U xenocara/dist/Mesa/src/gallium/auxiliary/tgsi/tgsi_util.h U xenocara/dist/Mesa/src/gallium/auxiliary/translate/translate.c U xenocara/dist/Mesa/src/gallium/auxiliary/translate/translate.h U xenocara/dist/Mesa/src/gallium/auxiliary/translate/translate_cache.c U xenocara/dist/Mesa/src/gallium/auxiliary/translate/translate_cache.h U xenocara/dist/Mesa/src/gallium/auxiliary/translate/translate_generic.c U xenocara/dist/Mesa/src/gallium/auxiliary/translate/translate_sse.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/dbghelp.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_atomic.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_bitmask.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_bitmask.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_blit.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_blit.h C xenocara/dist/Mesa/src/gallium/auxiliary/util/u_blitter.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_blitter.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_box.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_cache.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_cache.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_caps.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_caps.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_clear.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_cpu_detect.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_cpu_detect.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_describe.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_describe.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_flush.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_flush.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dl.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_memory.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_refcnt.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_refcnt.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_stack.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_stack.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_symbol.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_debug_symbol.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dirty_flags.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dirty_surfaces.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dl.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_double_list.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_draw.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_draw.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_draw_quad.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_draw_quad.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dual_blend.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dump.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dump_defines.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dump_state.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_dynarray.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_fifo.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format.csv U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_etc.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_etc.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_latc.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_latc.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_other.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_other.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_pack.py U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_parse.py U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_r11g11b10f.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_rgb9e5.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_rgtc.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_rgtc.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_s3tc.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_s3tc.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_srgb.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_srgb.py U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_table.py U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_tests.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_tests.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_yuv.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_yuv.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_zs.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_format_zs.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_framebuffer.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_framebuffer.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_gen_mipmap.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_gen_mipmap.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_half.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_handle_table.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_handle_table.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_hash.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_hash.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_hash_table.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_hash_table.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_helpers.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_helpers.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_index_modify.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_index_modify.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_init.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_inlines.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_keymap.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_keymap.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_linear.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_linear.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_linkage.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_linkage.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_math.c C xenocara/dist/Mesa/src/gallium/auxiliary/util/u_math.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_memory.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_mm.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_mm.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_network.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_network.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_pack_color.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_pointer.h C xenocara/dist/Mesa/src/gallium/auxiliary/util/u_prim.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_pstipple.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_pstipple.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_range.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_rect.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_resource.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_sse.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_resource.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_sampler.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_ringbuffer.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_ringbuffer.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_sampler.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_simple_list.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_simple_shaders.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_simple_shaders.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_slab.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_slab.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_snprintf.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_split_prim.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_staging.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_staging.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_string.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_suballoc.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_suballoc.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_surface.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_surface.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_surfaces.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_surfaces.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_texture.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_texture.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_tile.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_tile.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_time.h C xenocara/dist/Mesa/src/gallium/auxiliary/util/u_transfer.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_transfer.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_upload_mgr.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_upload_mgr.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_vbuf.c U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_vbuf.h U xenocara/dist/Mesa/src/gallium/auxiliary/util/u_video.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_compositor.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_compositor.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_csc.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_csc.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_decoder.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_decoder.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_defines.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_deint_filter.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_deint_filter.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_idct.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_idct.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_matrix_filter.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_matrix_filter.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_mc.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_mc.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_median_filter.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_median_filter.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_rbsp.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_types.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_video_buffer.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_video_buffer.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_vlc.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_winsys.h U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_winsys_dri.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_zscan.c U xenocara/dist/Mesa/src/gallium/auxiliary/vl/vl_zscan.h U xenocara/dist/Mesa/src/gallium/drivers/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/freedreno/Makefile.in N xenocara/dist/Mesa/src/gallium/drivers/freedreno/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/freedreno/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/freedreno/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/freedreno/adreno_common.xml.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/adreno_pm4.xml.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/disasm.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_context.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_context.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_draw.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_draw.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_fence.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_fence.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_gmem.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_gmem.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_lowering.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_lowering.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_program.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_program.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_query.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_query.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_query_hw.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_query_hw.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_query_sw.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_query_sw.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_resource.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_resource.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_screen.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_screen.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_state.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_state.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_surface.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_surface.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_texture.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_texture.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_util.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/freedreno_util.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/a2xx.xml.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/disasm-a2xx.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_compiler.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_compiler.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_draw.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_draw.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_gmem.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_gmem.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/instr-a2xx.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/ir-a2xx.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a2xx/ir-a2xx.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/a3xx.xml.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/disasm-a3xx.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_compiler.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_compiler.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_compiler_old.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_util.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_util.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/instr-a3xx.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3.h U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3_cp.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3_depth.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3_dump.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3_flatten.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3_ra.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3_sched.c U xenocara/dist/Mesa/src/gallium/drivers/freedreno/a3xx/ir3_visitor.h U xenocara/dist/Mesa/src/gallium/drivers/galahad/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/galahad/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/galahad/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/galahad/SConscript U xenocara/dist/Mesa/src/gallium/drivers/galahad/glhd_context.c U xenocara/dist/Mesa/src/gallium/drivers/galahad/glhd_context.h U xenocara/dist/Mesa/src/gallium/drivers/galahad/glhd_objects.c U xenocara/dist/Mesa/src/gallium/drivers/galahad/glhd_objects.h U xenocara/dist/Mesa/src/gallium/drivers/galahad/glhd_public.h U xenocara/dist/Mesa/src/gallium/drivers/galahad/glhd_screen.c U xenocara/dist/Mesa/src/gallium/drivers/galahad/glhd_screen.h U xenocara/dist/Mesa/src/gallium/drivers/i915/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/i915/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/i915/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/i915/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/i915/SConscript U xenocara/dist/Mesa/src/gallium/drivers/i915/TODO U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_batch.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_batchbuffer.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_blit.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_blit.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_clear.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_context.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_context.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_debug.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_debug.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_debug_fp.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_debug_private.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_flush.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_fpc.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_fpc_emit.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_fpc_optimize.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_fpc_translate.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_prim_emit.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_prim_vbuf.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_public.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_query.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_query.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_reg.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_resource.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_resource.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_resource_buffer.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_resource_texture.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_screen.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_screen.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state_derived.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state_dynamic.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state_emit.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state_fpc.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state_immediate.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state_inlines.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state_sampler.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_state_static.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_surface.c U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_surface.h U xenocara/dist/Mesa/src/gallium/drivers/i915/i915_winsys.h U xenocara/dist/Mesa/src/gallium/drivers/identity/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/identity/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/identity/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/identity/SConscript U xenocara/dist/Mesa/src/gallium/drivers/identity/id_context.c U xenocara/dist/Mesa/src/gallium/drivers/identity/id_context.h U xenocara/dist/Mesa/src/gallium/drivers/identity/id_objects.c U xenocara/dist/Mesa/src/gallium/drivers/identity/id_objects.h U xenocara/dist/Mesa/src/gallium/drivers/identity/id_public.h U xenocara/dist/Mesa/src/gallium/drivers/identity/id_screen.c U xenocara/dist/Mesa/src/gallium/drivers/identity/id_screen.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/ilo/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/ilo/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/ilo/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d_pipeline.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d_pipeline.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d_pipeline_dump.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d_pipeline_gen6.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d_pipeline_gen6.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d_pipeline_gen7.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_3d_pipeline_gen7.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_blit.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_blit.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_blitter.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_blitter.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_blitter_blt.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_blitter_pipe.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_blitter_rectlist.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_common.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_context.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_context.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_cp.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_cp.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_format.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_format.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_gpe.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_gpe_gen6.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_gpe_gen6.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_gpe_gen7.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_gpe_gen7.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_gpgpu.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_gpgpu.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_public.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_query.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_query.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_resource.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_resource.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_screen.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_screen.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_shader.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_shader.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_state.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_state.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_transfer.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_transfer.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_video.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/ilo_video.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/gen_blitter.xml.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/gen_eu_isa.xml.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/gen_eu_message.xml.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/gen_mi.xml.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/gen_regs.xml.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/gen_render_3d.xml.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/gen_render_dynamic.xml.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/gen_render_surface.xml.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/genhw/genhw.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/include/brw_defines.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/include/brw_structs.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/ilo_shader_cs.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/ilo_shader_fs.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/ilo_shader_gs.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/ilo_shader_internal.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/ilo_shader_vs.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_compiler.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_compiler.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_compiler_asm.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_compiler_disasm.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_compiler_reg.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_helpers.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_legalize.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_legalize.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_legalize_ra.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_optimize.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_optimize.h U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_tgsi.c U xenocara/dist/Mesa/src/gallium/drivers/ilo/shader/toy_tgsi.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/SConscript U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_aos.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_logicop.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_clear.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_clear.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_context.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_context.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_debug.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_draw_arrays.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_fence.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_fence.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_flush.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_flush.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_jit.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_jit.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_limits.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_memory.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_memory.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_perf.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_perf.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_public.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_query.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_query.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_rast.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_rast.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_rast_debug.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_rast_priv.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_rast_tri.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_rast_tri_tmp.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_scene.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_scene.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_screen.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_screen.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_setup.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_setup.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_setup_context.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_setup_line.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_setup_point.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_setup_tri.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_setup_vbuf.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_blend.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_clip.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_derived.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_fs.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_fs.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_gs.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_rasterizer.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_sampler.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_setup.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_setup.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_so.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_surface.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_vertex.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_state_vs.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_surface.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_surface.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_test.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_test_arit.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_test_blend.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_test_conv.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_test_format.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_test_main.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_test_printf.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.h U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_texture.c U xenocara/dist/Mesa/src/gallium/drivers/llvmpipe/lp_texture.h U xenocara/dist/Mesa/src/gallium/drivers/noop/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/noop/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/noop/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/noop/SConscript U xenocara/dist/Mesa/src/gallium/drivers/noop/noop_pipe.c U xenocara/dist/Mesa/src/gallium/drivers/noop/noop_public.h U xenocara/dist/Mesa/src/gallium/drivers/noop/noop_state.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/nouveau/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/nouveau/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/nouveau/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_buffer.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_buffer.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_compiler.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_context.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_debug.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_fence.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_fence.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_gldefs.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_heap.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_heap.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_mm.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_mm.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_screen.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_screen.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_video.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_statebuf.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_video.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_bsp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nouveau_winsys.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv17_mpeg.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv31_mpeg.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv_m2mf.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv_object.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_bb.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_build_util.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_build_util.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_driver.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nv50.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_graph.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_graph.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_inlines.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nv50.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_ra.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_ssa.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_util.cpp U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_util.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/target_lib_nvc0.asm U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/target_lib_nvc0.asm.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/target_lib_nve4.asm U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/target_lib_nve4.asm.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/target_lib_nvf0.asm U xenocara/dist/Mesa/src/gallium/drivers/nouveau/codegen/target_lib_nvf0.asm.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv01_2d.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30-40_3d.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_clear.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_context.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_context.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_draw.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_format.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_format.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_fragprog.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_fragtex.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_miptree.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_push.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_query.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_state.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_state.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_texture.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_state_validate.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_vbo.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv30_winsys.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv40_vertprog.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nv40_verttex.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nvfx_fragprog.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nvfx_shader.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv30/nvfx_vertprog.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_2d.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_3d.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_3ddefs.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_blit.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_context.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_context.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_defs.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_draw.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_formats.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_miptree.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_program.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_program.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_push.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_query.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_shader_state.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_state.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_state_validate.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj_tex.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_surface.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_tex.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_texture.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_transfer.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_transfer.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_vbo.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv50_winsys.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv84_video.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv84_video.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv84_video_bsp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv84_video_vp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv98_video.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv98_video.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv98_video_bsp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv98_video_ppp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nv50/nv98_video_vp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_2d.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_3d.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_3ddefs.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_draw.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_formats.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_graph_macros.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_m2mf.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_miptree.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_push.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_screen.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_shader_state.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state_validate.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_stateobj.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_surface.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_tex.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_transfer.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo_translate.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_bsp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_ppp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_vp.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nvc0_winsys.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.c U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.xml.h U xenocara/dist/Mesa/src/gallium/drivers/nouveau/nvc0/nve4_p2mf.xml.h U xenocara/dist/Mesa/src/gallium/drivers/r300/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/r300/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/r300/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/r300/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_blit.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_cb.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_chipset.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_chipset.h C xenocara/dist/Mesa/src/gallium/drivers/r300/r300_context.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_context.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_cs.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_debug.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_defines.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_emit.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_emit.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_flush.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_fs.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_fs.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_hyperz.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_public.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_query.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_reg.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_render.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_render_stencilref.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_render_translate.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_resource.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_screen.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_screen.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_screen_buffer.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_screen_buffer.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_shader_semantics.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_state.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_state_derived.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_state_inlines.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_texture.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_texture.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_texture_desc.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_texture_desc.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_transfer.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_transfer.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_vs.c U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_vs.h U xenocara/dist/Mesa/src/gallium/drivers/r300/r300_vs_draw.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/memory_pool.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/memory_pool.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r300_fragprog.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r300_fragprog.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r300_fragprog_emit.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r300_fragprog_swizzle.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r300_fragprog_swizzle.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r3xx_fragprog.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r3xx_vertprog.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r3xx_vertprog_dump.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r500_fragprog.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r500_fragprog.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/r500_fragprog_emit.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_code.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_code.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_compiler.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_compiler.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_compiler_util.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_compiler_util.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_deadcode.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_swizzles.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_emulate_loops.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_emulate_loops.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_inline_literals.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_list.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_list.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_optimize.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_pair_dead_sources.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_pair_regalloc.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_pair_schedule.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_pair_translate.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program_constants.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program_pair.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program_pair.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program_print.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program_tex.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_program_tex.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_regalloc.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_swizzle.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_variable.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_variable.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/radeon_vert_fc.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/omod_two_writers.test U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/r300_compiler_tests.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/r300_compiler_tests.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/radeon_compiler_optimize_tests.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/radeon_compiler_regalloc_tests.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/radeon_compiler_util_tests.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/rc_test_helpers.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/rc_test_helpers.h U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/regalloc_tex_1d_swizzle.test U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/unit_test.c U xenocara/dist/Mesa/src/gallium/drivers/r300/compiler/tests/unit_test.h U xenocara/dist/Mesa/src/gallium/drivers/r600/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/r600/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/r600/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/r600/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/r600/compute_memory_pool.c U xenocara/dist/Mesa/src/gallium/drivers/r600/compute_memory_pool.h U xenocara/dist/Mesa/src/gallium/drivers/r600/eg_asm.c U xenocara/dist/Mesa/src/gallium/drivers/r600/eg_sq.h U xenocara/dist/Mesa/src/gallium/drivers/r600/evergreen_compute.c U xenocara/dist/Mesa/src/gallium/drivers/r600/evergreen_compute.h U xenocara/dist/Mesa/src/gallium/drivers/r600/evergreen_compute_internal.h U xenocara/dist/Mesa/src/gallium/drivers/r600/evergreen_hw_context.c C xenocara/dist/Mesa/src/gallium/drivers/r600/evergreen_state.c U xenocara/dist/Mesa/src/gallium/drivers/r600/evergreend.h C xenocara/dist/Mesa/src/gallium/drivers/r600/r600_asm.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_asm.h C xenocara/dist/Mesa/src/gallium/drivers/r600/r600_blit.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_formats.h U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_isa.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_hw_context.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_isa.h U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_llvm.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_llvm.h U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_opcodes.h U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_pipe.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_pipe.h U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_public.h C xenocara/dist/Mesa/src/gallium/drivers/r600/r600_shader.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_shader.h U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_sq.h C xenocara/dist/Mesa/src/gallium/drivers/r600/r600_state.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_state_common.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600_uvd.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r600d.h U xenocara/dist/Mesa/src/gallium/drivers/r600/r700_asm.c U xenocara/dist/Mesa/src/gallium/drivers/r600/r700_sq.h U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/notes.markdown U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_bc.h U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_bc_builder.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_bc_decoder.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_bc_dump.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_bc_finalize.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_bc_fmt_def.inc U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_bc_parser.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_context.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_core.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_dce_cleanup.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_def_use.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_dump.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_expr.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_expr.h U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_gcm.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_gvn.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_if_conversion.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_ir.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_ir.h U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_pass.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_liveness.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_pass.h U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_peephole.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_psi_ops.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_public.h U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_ra_checker.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_ra_coalesce.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_ra_init.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_sched.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_sched.h U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_shader.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_shader.h U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_ssa_builder.cpp U xenocara/dist/Mesa/src/gallium/drivers/r600/sb/sb_valtable.cpp U xenocara/dist/Mesa/src/gallium/drivers/radeon/Makefile.in N xenocara/dist/Mesa/src/gallium/drivers/radeon/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/radeon/LLVM_REVISION.txt U xenocara/dist/Mesa/src/gallium/drivers/radeon/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/radeon/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/radeon/cayman_msaa.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/r600_buffer_common.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/r600_cs.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/r600_pipe_common.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/r600_pipe_common.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/r600_query.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/r600_streamout.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/r600_texture.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/r600d_common.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_elf_util.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_elf_util.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_llvm.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_llvm_emit.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_llvm_emit.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_llvm_util.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_llvm_util.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_uvd.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_uvd.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_vce.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_vce.h U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_vce_40_2_2.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_video.c U xenocara/dist/Mesa/src/gallium/drivers/radeon/radeon_video.h U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_blit.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_commands.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_compute.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_descriptors.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_dma.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_hw_context.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_pipe.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_pipe.h U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_pm4.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_pm4.h U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_public.h U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_shader.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_shader.h U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_state.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_state.h U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_state_draw.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/si_uvd.c U xenocara/dist/Mesa/src/gallium/drivers/radeonsi/sid.h U xenocara/dist/Mesa/src/gallium/drivers/rbug/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/rbug/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/rbug/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/rbug/README U xenocara/dist/Mesa/src/gallium/drivers/rbug/SConscript U xenocara/dist/Mesa/src/gallium/drivers/rbug/rbug_context.c U xenocara/dist/Mesa/src/gallium/drivers/rbug/rbug_context.h U xenocara/dist/Mesa/src/gallium/drivers/rbug/rbug_core.c U xenocara/dist/Mesa/src/gallium/drivers/rbug/rbug_objects.c U xenocara/dist/Mesa/src/gallium/drivers/rbug/rbug_objects.h U xenocara/dist/Mesa/src/gallium/drivers/rbug/rbug_public.h U xenocara/dist/Mesa/src/gallium/drivers/rbug/rbug_screen.c U xenocara/dist/Mesa/src/gallium/drivers/rbug/rbug_screen.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/softpipe/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/softpipe/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/softpipe/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/softpipe/SConscript U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_clear.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_clear.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_context.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_context.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_draw_arrays.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_fence.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_fence.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_flush.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_flush.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_fs.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_fs_exec.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_limits.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_public.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_quad.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_quad_blend.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_quad_depth_test.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_quad_depth_test_tmp.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_quad_fs.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_quad_pipe.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_quad_pipe.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_quad_stipple.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_query.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_query.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_screen.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_screen.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_setup.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_setup.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_blend.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_clip.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_derived.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_rasterizer.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_sampler.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_shader.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_so.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_surface.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_state_vertex.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_surface.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_surface.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_tex_sample.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_tex_sample.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_texture.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_texture.h U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_tile_cache.c U xenocara/dist/Mesa/src/gallium/drivers/softpipe/sp_tile_cache.h U xenocara/dist/Mesa/src/gallium/drivers/svga/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/svga/Android.mk U xenocara/dist/Mesa/src/gallium/drivers/svga/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/svga/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/svga/SConscript U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_cmd.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_cmd.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_context.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_context.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_debug.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_draw.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_draw.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_draw_arrays.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_draw_elements.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_draw_private.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_format.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_format.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_hw_reg.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_blend.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_fs.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_blit.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_clear.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_constants.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_depthstencil.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_draw.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_flush.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_misc.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_query.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_rasterizer.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_sampler.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_vertex.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_pipe_vs.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_public.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_resource.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_resource.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_resource_buffer.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_resource_buffer.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_sampler_view.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_resource_texture.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_resource_texture.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_sampler_view.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_screen.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_screen.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_screen_cache.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_screen_cache.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_shader.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_shader.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state_constants.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state_framebuffer.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state_fs.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state_need_swtnl.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state_rss.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state_tss.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state_vdecl.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_state_vs.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_surface.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_surface.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_swtnl.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_swtnl_backend.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_swtnl_draw.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_swtnl_private.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_swtnl_state.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_tgsi.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_tgsi.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_tgsi_decl_sm30.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_tgsi_emit.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_tgsi_insn.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svga_winsys.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/README U xenocara/dist/Mesa/src/gallium/drivers/svga/include/includeCheck.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga3d_caps.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga3d_cmd.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga3d_devcaps.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga3d_limits.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga3d_reg.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga3d_shaderdefs.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga3d_surfacedefs.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga3d_types.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga_escape.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga_overlay.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga_reg.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/svga_types.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/vmware_pack_begin.h U xenocara/dist/Mesa/src/gallium/drivers/svga/include/vmware_pack_end.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svgadump/svga_dump.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svgadump/svga_dump.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svgadump/svga_dump.py U xenocara/dist/Mesa/src/gallium/drivers/svga/svgadump/svga_shader.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.h U xenocara/dist/Mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.c U xenocara/dist/Mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.h U xenocara/dist/Mesa/src/gallium/drivers/trace/Makefile.in U xenocara/dist/Mesa/src/gallium/drivers/trace/Makefile.am U xenocara/dist/Mesa/src/gallium/drivers/trace/Makefile.sources U xenocara/dist/Mesa/src/gallium/drivers/trace/README U xenocara/dist/Mesa/src/gallium/drivers/trace/SConscript U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_context.c U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_context.h U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_dump.c U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_dump.h U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_dump_defines.h U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_dump_state.c U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_dump_state.h U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_public.h U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_screen.c U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_screen.h U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_texture.c U xenocara/dist/Mesa/src/gallium/drivers/trace/tr_texture.h U xenocara/dist/Mesa/src/gallium/drivers/trace/trace.xsl U xenocara/dist/Mesa/src/gallium/state_trackers/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/README U xenocara/dist/Mesa/src/gallium/state_trackers/clover/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/clover/Doxyfile U xenocara/dist/Mesa/src/gallium/state_trackers/clover/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/clover/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/context.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/device.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/dispatch.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/dispatch.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/event.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/kernel.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/memory.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/platform.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/program.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/queue.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/sampler.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/transfer.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/api/util.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/compiler.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/context.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/context.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/device.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/device.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/error.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/event.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/event.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/format.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/format.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/kernel.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/kernel.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/memory.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/memory.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/module.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/module.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/object.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/platform.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/platform.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/program.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/program.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/property.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/queue.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/queue.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/resource.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/resource.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/sampler.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/sampler.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/timestamp.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/core/timestamp.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/llvm/invocation.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/tgsi/compiler.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/adaptor.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/algebra.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/algorithm.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/compat.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/compat.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/factor.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/functional.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/lazy.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/pointer.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/range.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/clover/util/tuple.hpp U xenocara/dist/Mesa/src/gallium/state_trackers/dri/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/dri/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/dri/SConscript U xenocara/dist/Mesa/src/gallium/state_trackers/dri/drm/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/dri/drm/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/dri/drm/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/dri/drm/SConscript U xenocara/dist/Mesa/src/gallium/state_trackers/dri/drm/dri2.c U xenocara/dist/Mesa/src/gallium/state_trackers/dri/drm/dri2_buffer.h U xenocara/dist/Mesa/src/gallium/state_trackers/dri/sw/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/dri/sw/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/dri/sw/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/dri/sw/SConscript U xenocara/dist/Mesa/src/gallium/state_trackers/dri/sw/drisw.c U xenocara/dist/Mesa/src/gallium/state_trackers/dri/common/dri_context.c U xenocara/dist/Mesa/src/gallium/state_trackers/dri/common/dri_context.h U xenocara/dist/Mesa/src/gallium/state_trackers/dri/common/dri_drawable.c U xenocara/dist/Mesa/src/gallium/state_trackers/dri/common/dri_drawable.h U xenocara/dist/Mesa/src/gallium/state_trackers/dri/common/dri_screen.c U xenocara/dist/Mesa/src/gallium/state_trackers/dri/common/dri_screen.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/egl/Android.mk U xenocara/dist/Mesa/src/gallium/state_trackers/egl/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/egl/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/egl/SConscript U xenocara/dist/Mesa/src/gallium/state_trackers/egl/android/native_android.cpp U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_api.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_api.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_image.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_image.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_loader.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_st.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_st.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_sync.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/egl_g3d_sync.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/native.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/native_buffer.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/native_helper.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/native_helper.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/native_modeset.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/native_wayland_bufmgr.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/native_wayland_drm_bufmgr.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/common/native_wayland_drm_bufmgr.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/drm/modeset.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/drm/native_drm.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/drm/native_drm.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/fbdev/native_fbdev.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/gdi/native_gdi.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/null/native_null.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/wayland/native_drm.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/wayland/native_shm.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/wayland/native_wayland.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/wayland/native_wayland.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/glcore.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/glxinit.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/glxinit.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/native_dri2.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/native_x11.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/native_x11.h U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/native_ximage.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/x11_screen.c U xenocara/dist/Mesa/src/gallium/state_trackers/egl/x11/x11_screen.h U xenocara/dist/Mesa/src/gallium/state_trackers/gbm/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/gbm/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/gbm/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/gbm/gbm_drm.c U xenocara/dist/Mesa/src/gallium/state_trackers/gbm/gbm_gallium_drmint.h U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/SConscript U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/glx_api.c U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/glx_getproc.c U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/glx_usefont.c U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/xm_api.c U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/xm_api.h U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/xm_public.h U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/xm_st.c U xenocara/dist/Mesa/src/gallium/state_trackers/glx/xlib/xm_st.h U xenocara/dist/Mesa/src/gallium/state_trackers/omx/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/omx/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/omx/entrypoint.c U xenocara/dist/Mesa/src/gallium/state_trackers/omx/entrypoint.h U xenocara/dist/Mesa/src/gallium/state_trackers/omx/vid_dec.c U xenocara/dist/Mesa/src/gallium/state_trackers/omx/vid_dec.h U xenocara/dist/Mesa/src/gallium/state_trackers/omx/vid_dec_h264.c U xenocara/dist/Mesa/src/gallium/state_trackers/omx/vid_dec_mpeg12.c U xenocara/dist/Mesa/src/gallium/state_trackers/omx/vid_enc.c U xenocara/dist/Mesa/src/gallium/state_trackers/omx/vid_enc.h U xenocara/dist/Mesa/src/gallium/state_trackers/osmesa/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/osmesa/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/osmesa/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/osmesa/osmesa.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/bitmap.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/decode.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/device.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/ftab.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/htab.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/mixer.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/output.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/preemption.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/presentation.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/query.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/surface.c U xenocara/dist/Mesa/src/gallium/state_trackers/vdpau/vdpau_private.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/vega/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/vega/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/vega/SConscript U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_consts.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_context.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_filters.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_images.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_masks.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_misc.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_paint.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_params.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_path.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_text.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/api_transform.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/arc.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/arc.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/asm_fill.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/asm_filters.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/asm_util.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/image.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/bezier.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/bezier.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/handle.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/handle.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/image.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/mask.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/mask.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/matrix.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/paint.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/paint.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/path.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/path.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/path_utils.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/polygon.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/polygon.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/renderer.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/renderer.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/shader.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/shader.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/shaders_cache.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/shaders_cache.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/stroker.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/stroker.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/text.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/text.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/util_array.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vgu.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_api.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_context.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_context.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_manager.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_manager.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_state.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_state.h U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_translate.c U xenocara/dist/Mesa/src/gallium/state_trackers/vega/vg_translate.h U xenocara/dist/Mesa/src/gallium/state_trackers/xa/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/xa/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/xa/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/xa/README U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa-indent U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_composite.c U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_composite.h U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_context.c U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_context.h U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_priv.h U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_renderer.c U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_tgsi.c U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_tracker.c U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_tracker.h U xenocara/dist/Mesa/src/gallium/state_trackers/xa/xa_yuv.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/Makefile.in U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/Makefile.am U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/attributes.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/block.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/context.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/subpicture.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/surface.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/xvmc_private.h U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/tests/test_blocks.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/tests/test_context.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/tests/test_rendering.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/tests/test_subpicture.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/tests/test_surface.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/tests/testlib.c U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/tests/testlib.h U xenocara/dist/Mesa/src/gallium/state_trackers/xvmc/tests/xvmc_bench.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/Makefile.sources U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/SConscript U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/opengl32.def U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/opengl32.mingw.def U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_context.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_context.h U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_device.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_device.h U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_ext_context.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_ext_extensionsstring.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_ext_pbuffer.c C xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_ext_pixelformat.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_ext_swapinterval.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_framebuffer.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_framebuffer.h U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_getprocaddress.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_icd.h U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_pixelformat.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_pixelformat.h U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_st.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_st.h U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_tls.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_tls.h U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_wgl.c U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_wgl.h U xenocara/dist/Mesa/src/gallium/state_trackers/wgl/stw_winsys.h U xenocara/dist/Mesa/src/gallium/targets/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/dri.sym U xenocara/dist/Mesa/src/gallium/targets/omx.sym U xenocara/dist/Mesa/src/gallium/targets/vdpau.sym U xenocara/dist/Mesa/src/gallium/targets/xvmc.sym U xenocara/dist/Mesa/src/gallium/targets/dri-freedreno/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/dri-freedreno/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/dri-freedreno/target-kgsl.c U xenocara/dist/Mesa/src/gallium/targets/dri-freedreno/target-msm.c U xenocara/dist/Mesa/src/gallium/targets/dri-i915/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/dri-i915/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/dri-i915/SConscript U xenocara/dist/Mesa/src/gallium/targets/dri-i915/target.c U xenocara/dist/Mesa/src/gallium/targets/dri-ilo/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/dri-ilo/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/dri-ilo/target.c U xenocara/dist/Mesa/src/gallium/targets/dri-nouveau/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/dri-nouveau/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/dri-nouveau/nouveau_dri.dyn U xenocara/dist/Mesa/src/gallium/targets/dri-nouveau/target.c U xenocara/dist/Mesa/src/gallium/targets/dri-swrast/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/dri-swrast/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/dri-swrast/SConscript U xenocara/dist/Mesa/src/gallium/targets/dri-swrast/swrast_drm_api.c U xenocara/dist/Mesa/src/gallium/targets/dri-vmwgfx/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/dri-vmwgfx/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/dri-vmwgfx/SConscript U xenocara/dist/Mesa/src/gallium/targets/dri-vmwgfx/target.c U xenocara/dist/Mesa/src/gallium/targets/dri-vmwgfx/vmw_powf.c U xenocara/dist/Mesa/src/gallium/targets/egl-static/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/egl-static/Android.mk U xenocara/dist/Mesa/src/gallium/targets/egl-static/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/egl-static/SConscript U xenocara/dist/Mesa/src/gallium/targets/egl-static/egl.c U xenocara/dist/Mesa/src/gallium/targets/egl-static/egl.sym U xenocara/dist/Mesa/src/gallium/targets/egl-static/egl_pipe.c U xenocara/dist/Mesa/src/gallium/targets/egl-static/egl_pipe.h U xenocara/dist/Mesa/src/gallium/targets/egl-static/egl_st.c U xenocara/dist/Mesa/src/gallium/targets/egl-static/egl_st.h U xenocara/dist/Mesa/src/gallium/targets/egl-static/st_GL.c U xenocara/dist/Mesa/src/gallium/targets/gbm/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/gbm/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/gbm/gallium-gbm-symbols-check U xenocara/dist/Mesa/src/gallium/targets/gbm/gbm.c U xenocara/dist/Mesa/src/gallium/targets/gbm/gbm.sym U xenocara/dist/Mesa/src/gallium/targets/libgl-xlib/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/libgl-xlib/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/libgl-xlib/SConscript U xenocara/dist/Mesa/src/gallium/targets/libgl-xlib/xlib.c U xenocara/dist/Mesa/src/gallium/targets/omx-nouveau/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/omx-nouveau/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/omx-nouveau/target.c U xenocara/dist/Mesa/src/gallium/targets/opencl/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/opencl/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/opencl/mesa.icd U xenocara/dist/Mesa/src/gallium/targets/opencl/opencl.sym U xenocara/dist/Mesa/src/gallium/targets/osmesa/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/osmesa/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/osmesa/osmesa.pc.in U xenocara/dist/Mesa/src/gallium/targets/osmesa/target.c U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe.sym U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe_i915.c U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe_msm.c U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe_nouveau.c U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe_r300.c U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe_r600.c U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe_radeonsi.c U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe_swrast.c U xenocara/dist/Mesa/src/gallium/targets/pipe-loader/pipe_vmwgfx.c U xenocara/dist/Mesa/src/gallium/targets/r300/dri/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/r300/dri/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/r300/dri/radeon.dyn U xenocara/dist/Mesa/src/gallium/targets/r300/common/drm_target.c U xenocara/dist/Mesa/src/gallium/targets/r600/dri/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/r600/dri/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/r600/omx/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/r600/omx/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/r600/vdpau/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/r600/vdpau/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/r600/xvmc/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/r600/xvmc/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/r600/common/drm_target.c U xenocara/dist/Mesa/src/gallium/targets/radeonsi/dri/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/radeonsi/dri/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/radeonsi/omx/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/radeonsi/omx/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/radeonsi/vdpau/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/radeonsi/vdpau/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/radeonsi/common/drm_target.c U xenocara/dist/Mesa/src/gallium/targets/vdpau-nouveau/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/vdpau-nouveau/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/vdpau-nouveau/target.c U xenocara/dist/Mesa/src/gallium/targets/xa/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/xa/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/xa/xa.sym U xenocara/dist/Mesa/src/gallium/targets/xa/xatracker.pc.in U xenocara/dist/Mesa/src/gallium/targets/xvmc-nouveau/Makefile.in U xenocara/dist/Mesa/src/gallium/targets/xvmc-nouveau/Makefile.am U xenocara/dist/Mesa/src/gallium/targets/xvmc-nouveau/target.c U xenocara/dist/Mesa/src/gallium/targets/graw-gdi/SConscript U xenocara/dist/Mesa/src/gallium/targets/graw-gdi/graw_gdi.c U xenocara/dist/Mesa/src/gallium/targets/graw-null/SConscript U xenocara/dist/Mesa/src/gallium/targets/graw-null/graw_null.c U xenocara/dist/Mesa/src/gallium/targets/graw-null/graw_util.c U xenocara/dist/Mesa/src/gallium/targets/graw-xlib/SConscript U xenocara/dist/Mesa/src/gallium/targets/graw-xlib/graw_xlib.c U xenocara/dist/Mesa/src/gallium/targets/haiku-softpipe/GalliumContext.cpp U xenocara/dist/Mesa/src/gallium/targets/haiku-softpipe/GalliumContext.h U xenocara/dist/Mesa/src/gallium/targets/haiku-softpipe/GalliumFramebuffer.cpp U xenocara/dist/Mesa/src/gallium/targets/haiku-softpipe/GalliumFramebuffer.h U xenocara/dist/Mesa/src/gallium/targets/haiku-softpipe/SConscript U xenocara/dist/Mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp U xenocara/dist/Mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.h U xenocara/dist/Mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.rdef U xenocara/dist/Mesa/src/gallium/targets/libgl-gdi/SConscript U xenocara/dist/Mesa/src/gallium/targets/libgl-gdi/libgl_gdi.c U xenocara/dist/Mesa/src/gallium/tests/trivial/Makefile.in U xenocara/dist/Mesa/src/gallium/tests/trivial/Makefile.am U xenocara/dist/Mesa/src/gallium/tests/trivial/compute.c U xenocara/dist/Mesa/src/gallium/tests/trivial/quad-tex.c U xenocara/dist/Mesa/src/gallium/tests/trivial/tri.c U xenocara/dist/Mesa/src/gallium/tests/unit/Makefile.in U xenocara/dist/Mesa/src/gallium/tests/unit/Makefile.am U xenocara/dist/Mesa/src/gallium/tests/unit/SConscript U xenocara/dist/Mesa/src/gallium/tests/unit/pipe_barrier_test.c U xenocara/dist/Mesa/src/gallium/tests/unit/translate_test.c U xenocara/dist/Mesa/src/gallium/tests/unit/u_cache_test.c U xenocara/dist/Mesa/src/gallium/tests/unit/u_format_compatible_test.c U xenocara/dist/Mesa/src/gallium/tests/unit/u_format_test.c U xenocara/dist/Mesa/src/gallium/tests/unit/u_half_test.c U xenocara/dist/Mesa/src/gallium/tests/graw/SConscript U xenocara/dist/Mesa/src/gallium/tests/graw/clear.c U xenocara/dist/Mesa/src/gallium/tests/graw/disasm.c U xenocara/dist/Mesa/src/gallium/tests/graw/fs-fragcoord.c U xenocara/dist/Mesa/src/gallium/tests/graw/fs-frontface.c U xenocara/dist/Mesa/src/gallium/tests/graw/fs-test.c U xenocara/dist/Mesa/src/gallium/tests/graw/fs-write-z.c U xenocara/dist/Mesa/src/gallium/tests/graw/graw_util.h U xenocara/dist/Mesa/src/gallium/tests/graw/gs-test.c U xenocara/dist/Mesa/src/gallium/tests/graw/occlusion-query.c U xenocara/dist/Mesa/src/gallium/tests/graw/quad-sample.c U xenocara/dist/Mesa/src/gallium/tests/graw/quad-tex.c U xenocara/dist/Mesa/src/gallium/tests/graw/shader-leak.c U xenocara/dist/Mesa/src/gallium/tests/graw/tex-srgb.c U xenocara/dist/Mesa/src/gallium/tests/graw/tex-swizzle.c U xenocara/dist/Mesa/src/gallium/tests/graw/tgsi_dump.gdb U xenocara/dist/Mesa/src/gallium/tests/graw/tri-gs.c U xenocara/dist/Mesa/src/gallium/tests/graw/tri-instanced.c U xenocara/dist/Mesa/src/gallium/tests/graw/tri-large.c U xenocara/dist/Mesa/src/gallium/tests/graw/tri.c U xenocara/dist/Mesa/src/gallium/tests/graw/vs-test.c U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-abs.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-add.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-cb-1d.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-cb-2d.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-dp3.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-dp4.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-dst.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-ex2.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-face.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-flr.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-frc.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-kil.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-lg2.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-lit.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-lrp.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-mad-immx.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-mad.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-max.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-min.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-mov.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-mul.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-rcp.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-rsq.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-sge.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-slt.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-srcmod-abs.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-srcmod-absneg.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-srcmod-neg.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-srcmod-swz.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-sub.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-tempx.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-ucmp.sh U xenocara/dist/Mesa/src/gallium/tests/graw/fragment-shader/frag-xpd.sh U xenocara/dist/Mesa/src/gallium/tests/graw/geometry-shader/add-mix.txt U xenocara/dist/Mesa/src/gallium/tests/graw/geometry-shader/add.txt U xenocara/dist/Mesa/src/gallium/tests/graw/geometry-shader/line.txt U xenocara/dist/Mesa/src/gallium/tests/graw/geometry-shader/mov-cb-2d.txt U xenocara/dist/Mesa/src/gallium/tests/graw/geometry-shader/mov.txt U xenocara/dist/Mesa/src/gallium/tests/graw/geometry-shader/multi-line.txt U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-abs.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-add.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-arl.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-arr.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-cb-1d.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-cb-2d.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-dp3.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-dp4.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-dst.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-ex2.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-flr.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-frc.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-imul_hi.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-lg2.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-lit.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-lrp.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-mad.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-max.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-min.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-mov.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-mul.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-rcp.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-rsq.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-sge.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-slt.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-srcmod-abs.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-srcmod-absneg.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-srcmod-neg.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-srcmod-swz.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-sub.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-uadd.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-umul_hi.sh U xenocara/dist/Mesa/src/gallium/tests/graw/vertex-shader/vert-xpd.sh U xenocara/dist/Mesa/src/gallium/tests/python/tests/regress/fragment-shader/frag-cmp.sh U xenocara/dist/Mesa/src/gallium/winsys/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/freedreno/drm/Makefile.in N xenocara/dist/Mesa/src/gallium/winsys/freedreno/drm/Android.mk U xenocara/dist/Mesa/src/gallium/winsys/freedreno/drm/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/freedreno/drm/Makefile.sources U xenocara/dist/Mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_public.h U xenocara/dist/Mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/Android.mk U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/Makefile.sources U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/SConscript U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/i915_drm_batchbuffer.c U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/i915_drm_buffer.c U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/i915_drm_fence.c U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/i915_drm_public.h U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/i915_drm_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/i915/drm/i915_drm_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/Makefile.sources U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/SConscript U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/i915_sw_batchbuffer.c U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/i915_sw_buffer.c U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/i915_sw_fence.c U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/i915_sw_public.h U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/i915_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/i915/sw/i915_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/intel/intel_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/intel/drm/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/intel/drm/Android.mk U xenocara/dist/Mesa/src/gallium/winsys/intel/drm/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/intel/drm/Makefile.sources U xenocara/dist/Mesa/src/gallium/winsys/intel/drm/intel_drm_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/nouveau/drm/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/nouveau/drm/Android.mk U xenocara/dist/Mesa/src/gallium/winsys/nouveau/drm/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/nouveau/drm/Makefile.sources U xenocara/dist/Mesa/src/gallium/winsys/nouveau/drm/nouveau_drm_public.h U xenocara/dist/Mesa/src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/Android.mk U xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/Makefile.sources U xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_drm_bo.c U xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_drm_bo.h C xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_drm_cs.c C xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_drm_cs.h U xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_drm_cs_dump.c U xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_drm_public.h C xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_drm_winsys.c C xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_drm_winsys.h C xenocara/dist/Mesa/src/gallium/winsys/radeon/drm/radeon_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/radeon/tools/radeon_ctx.h U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/Android.mk U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/Makefile.sources U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/SConscript U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/svga_drm_public.h U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_buffer.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_buffer.h U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_context.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_context.h U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_fence.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_fence.h U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_screen.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_screen.h U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_screen_dri.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_screen_ioctl.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_screen_pools.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_screen_svga.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_shader.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_shader.h U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_surface.c U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmw_surface.h U xenocara/dist/Mesa/src/gallium/winsys/svga/drm/vmwgfx_drm.h U xenocara/dist/Mesa/src/gallium/winsys/sw/dri/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/sw/dri/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/sw/dri/SConscript U xenocara/dist/Mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/sw/fbdev/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/sw/fbdev/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/sw/fbdev/SConscript U xenocara/dist/Mesa/src/gallium/winsys/sw/fbdev/fbdev_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/sw/fbdev/fbdev_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/sw/null/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/sw/null/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/sw/null/SConscript U xenocara/dist/Mesa/src/gallium/winsys/sw/null/null_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/sw/null/null_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/sw/wayland/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/sw/wayland/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/sw/wayland/wayland_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/sw/wayland/wayland_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/sw/wrapper/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/sw/wrapper/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/sw/wrapper/SConscript U xenocara/dist/Mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/sw/xlib/Makefile.in U xenocara/dist/Mesa/src/gallium/winsys/sw/xlib/Makefile.am U xenocara/dist/Mesa/src/gallium/winsys/sw/xlib/SConscript U xenocara/dist/Mesa/src/gallium/winsys/sw/xlib/xlib_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/sw/xlib/xlib_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/sw/android/Android.mk U xenocara/dist/Mesa/src/gallium/winsys/sw/android/android_sw_winsys.cpp U xenocara/dist/Mesa/src/gallium/winsys/sw/android/android_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/sw/gdi/SConscript U xenocara/dist/Mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.h U xenocara/dist/Mesa/src/gallium/winsys/sw/hgl/SConscript U xenocara/dist/Mesa/src/gallium/winsys/sw/hgl/bitmap_wrapper.cpp U xenocara/dist/Mesa/src/gallium/winsys/sw/hgl/bitmap_wrapper.h U xenocara/dist/Mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.c U xenocara/dist/Mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.h U xenocara/dist/Mesa/src/gallium/docs/Makefile U xenocara/dist/Mesa/src/gallium/docs/d3d11ddi.txt U xenocara/dist/Mesa/src/gallium/docs/llvm-todo.txt U xenocara/dist/Mesa/src/gallium/docs/make.bat U xenocara/dist/Mesa/src/gallium/docs/source/conf.py U xenocara/dist/Mesa/src/gallium/docs/source/context.rst U xenocara/dist/Mesa/src/gallium/docs/source/cso.rst U xenocara/dist/Mesa/src/gallium/docs/source/debugging.rst U xenocara/dist/Mesa/src/gallium/docs/source/distro.rst U xenocara/dist/Mesa/src/gallium/docs/source/format.rst U xenocara/dist/Mesa/src/gallium/docs/source/glossary.rst U xenocara/dist/Mesa/src/gallium/docs/source/index.rst U xenocara/dist/Mesa/src/gallium/docs/source/intro.rst U xenocara/dist/Mesa/src/gallium/docs/source/pipeline.txt U xenocara/dist/Mesa/src/gallium/docs/source/resources.rst U xenocara/dist/Mesa/src/gallium/docs/source/screen.rst U xenocara/dist/Mesa/src/gallium/docs/source/tgsi.rst U xenocara/dist/Mesa/src/gallium/docs/source/cso/blend.rst U xenocara/dist/Mesa/src/gallium/docs/source/cso/dsa.rst U xenocara/dist/Mesa/src/gallium/docs/source/cso/rasterizer.rst U xenocara/dist/Mesa/src/gallium/docs/source/cso/sampler.rst U xenocara/dist/Mesa/src/gallium/docs/source/cso/shader.rst U xenocara/dist/Mesa/src/gallium/docs/source/cso/velems.rst U xenocara/dist/Mesa/src/gallium/docs/source/exts/formatting.py U xenocara/dist/Mesa/src/gallium/include/pipe/p_compiler.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_config.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_context.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_defines.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_format.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_screen.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_shader_tokens.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_state.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_video_codec.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_video_enums.h U xenocara/dist/Mesa/src/gallium/include/pipe/p_video_state.h U xenocara/dist/Mesa/src/gallium/include/state_tracker/drisw_api.h U xenocara/dist/Mesa/src/gallium/include/state_tracker/drm_driver.h U xenocara/dist/Mesa/src/gallium/include/state_tracker/graw.h U xenocara/dist/Mesa/src/gallium/include/state_tracker/st_api.h U xenocara/dist/Mesa/src/gallium/include/state_tracker/sw_winsys.h U xenocara/dist/Mesa/src/gallium/include/state_tracker/vdpau_interop.h U xenocara/dist/Mesa/src/gallium/include/state_tracker/xlibsw_api.h U xenocara/dist/Mesa/src/gallium/tools/addr2line.sh U xenocara/dist/Mesa/src/gallium/tools/trace/README.txt U xenocara/dist/Mesa/src/gallium/tools/trace/TODO.txt U xenocara/dist/Mesa/src/gallium/tools/trace/diff_state.py U xenocara/dist/Mesa/src/gallium/tools/trace/dump.py U xenocara/dist/Mesa/src/gallium/tools/trace/dump_state.py U xenocara/dist/Mesa/src/gallium/tools/trace/format.py U xenocara/dist/Mesa/src/gallium/tools/trace/model.py U xenocara/dist/Mesa/src/gallium/tools/trace/parse.py U xenocara/dist/Mesa/src/gallium/tools/trace/tracediff.sh U xenocara/dist/Mesa/src/gbm/Makefile.in U xenocara/dist/Mesa/src/gbm/Makefile.am U xenocara/dist/Mesa/src/gbm/gbm-symbols-check U xenocara/dist/Mesa/src/gbm/backends/dri/gbm_dri.c U xenocara/dist/Mesa/src/gbm/backends/dri/gbm_driint.h U xenocara/dist/Mesa/src/gbm/main/backend.c U xenocara/dist/Mesa/src/gbm/main/backend.h U xenocara/dist/Mesa/src/gbm/main/common_drm.h U xenocara/dist/Mesa/src/gbm/main/gbm.c U xenocara/dist/Mesa/src/gbm/main/gbm.h U xenocara/dist/Mesa/src/gbm/main/gbm.pc.in U xenocara/dist/Mesa/src/gbm/main/gbmint.h C xenocara/dist/Mesa/src/glsl/glsl_lexer.cpp U xenocara/dist/Mesa/src/glsl/glsl_parser.cpp U xenocara/dist/Mesa/src/glsl/glsl_parser.h U xenocara/dist/Mesa/src/glsl/Makefile.in U xenocara/dist/Mesa/src/glsl/Android.gen.mk U xenocara/dist/Mesa/src/glsl/Android.mk U xenocara/dist/Mesa/src/glsl/Makefile.am U xenocara/dist/Mesa/src/glsl/Makefile.sources U xenocara/dist/Mesa/src/glsl/README U xenocara/dist/Mesa/src/glsl/SConscript U xenocara/dist/Mesa/src/glsl/TODO U xenocara/dist/Mesa/src/glsl/ast.h U xenocara/dist/Mesa/src/glsl/ast_array_index.cpp U xenocara/dist/Mesa/src/glsl/ast_expr.cpp U xenocara/dist/Mesa/src/glsl/ast_function.cpp U xenocara/dist/Mesa/src/glsl/ast_to_hir.cpp U xenocara/dist/Mesa/src/glsl/ast_type.cpp U xenocara/dist/Mesa/src/glsl/builtin_functions.cpp U xenocara/dist/Mesa/src/glsl/builtin_type_macros.h U xenocara/dist/Mesa/src/glsl/builtin_types.cpp U xenocara/dist/Mesa/src/glsl/builtin_variables.cpp U xenocara/dist/Mesa/src/glsl/glsl_lexer.ll U xenocara/dist/Mesa/src/glsl/glsl_parser.yy U xenocara/dist/Mesa/src/glsl/glsl_parser_extras.cpp U xenocara/dist/Mesa/src/glsl/glsl_parser_extras.h U xenocara/dist/Mesa/src/glsl/glsl_symbol_table.cpp U xenocara/dist/Mesa/src/glsl/glsl_symbol_table.h U xenocara/dist/Mesa/src/glsl/glsl_types.cpp U xenocara/dist/Mesa/src/glsl/glsl_types.h U xenocara/dist/Mesa/src/glsl/hir_field_selection.cpp U xenocara/dist/Mesa/src/glsl/ir.cpp U xenocara/dist/Mesa/src/glsl/ir.h U xenocara/dist/Mesa/src/glsl/ir_basic_block.cpp U xenocara/dist/Mesa/src/glsl/ir_basic_block.h U xenocara/dist/Mesa/src/glsl/ir_builder.cpp U xenocara/dist/Mesa/src/glsl/ir_builder.h U xenocara/dist/Mesa/src/glsl/ir_clone.cpp U xenocara/dist/Mesa/src/glsl/ir_constant_expression.cpp U xenocara/dist/Mesa/src/glsl/ir_equals.cpp U xenocara/dist/Mesa/src/glsl/ir_expression_flattening.cpp U xenocara/dist/Mesa/src/glsl/ir_expression_flattening.h U xenocara/dist/Mesa/src/glsl/ir_function.cpp U xenocara/dist/Mesa/src/glsl/ir_function_can_inline.cpp U xenocara/dist/Mesa/src/glsl/ir_function_detect_recursion.cpp U xenocara/dist/Mesa/src/glsl/ir_function_inlining.h U xenocara/dist/Mesa/src/glsl/ir_hierarchical_visitor.cpp U xenocara/dist/Mesa/src/glsl/ir_hierarchical_visitor.h U xenocara/dist/Mesa/src/glsl/ir_hv_accept.cpp U xenocara/dist/Mesa/src/glsl/ir_import_prototypes.cpp U xenocara/dist/Mesa/src/glsl/ir_optimization.h U xenocara/dist/Mesa/src/glsl/ir_print_visitor.cpp U xenocara/dist/Mesa/src/glsl/ir_print_visitor.h U xenocara/dist/Mesa/src/glsl/ir_reader.cpp U xenocara/dist/Mesa/src/glsl/ir_reader.h U xenocara/dist/Mesa/src/glsl/ir_rvalue_visitor.cpp U xenocara/dist/Mesa/src/glsl/ir_rvalue_visitor.h U xenocara/dist/Mesa/src/glsl/ir_set_program_inouts.cpp U xenocara/dist/Mesa/src/glsl/ir_uniform.h U xenocara/dist/Mesa/src/glsl/ir_validate.cpp U xenocara/dist/Mesa/src/glsl/ir_variable_refcount.cpp U xenocara/dist/Mesa/src/glsl/ir_variable_refcount.h U xenocara/dist/Mesa/src/glsl/ir_visitor.h U xenocara/dist/Mesa/src/glsl/link_atomics.cpp U xenocara/dist/Mesa/src/glsl/link_functions.cpp U xenocara/dist/Mesa/src/glsl/link_interface_blocks.cpp U xenocara/dist/Mesa/src/glsl/link_uniform_block_active_visitor.cpp U xenocara/dist/Mesa/src/glsl/link_uniform_block_active_visitor.h U xenocara/dist/Mesa/src/glsl/link_uniform_blocks.cpp U xenocara/dist/Mesa/src/glsl/link_uniform_initializers.cpp U xenocara/dist/Mesa/src/glsl/link_uniforms.cpp U xenocara/dist/Mesa/src/glsl/link_varyings.h U xenocara/dist/Mesa/src/glsl/link_varyings.cpp U xenocara/dist/Mesa/src/glsl/linker.cpp U xenocara/dist/Mesa/src/glsl/linker.h U xenocara/dist/Mesa/src/glsl/list.h U xenocara/dist/Mesa/src/glsl/loop_analysis.cpp U xenocara/dist/Mesa/src/glsl/loop_analysis.h U xenocara/dist/Mesa/src/glsl/loop_controls.cpp U xenocara/dist/Mesa/src/glsl/loop_unroll.cpp U xenocara/dist/Mesa/src/glsl/lower_clip_distance.cpp U xenocara/dist/Mesa/src/glsl/lower_discard.cpp U xenocara/dist/Mesa/src/glsl/lower_discard_flow.cpp U xenocara/dist/Mesa/src/glsl/lower_if_to_cond_assign.cpp U xenocara/dist/Mesa/src/glsl/lower_instructions.cpp U xenocara/dist/Mesa/src/glsl/lower_jumps.cpp U xenocara/dist/Mesa/src/glsl/lower_mat_op_to_vec.cpp U xenocara/dist/Mesa/src/glsl/lower_named_interface_blocks.cpp U xenocara/dist/Mesa/src/glsl/lower_noise.cpp U xenocara/dist/Mesa/src/glsl/lower_offset_array.cpp U xenocara/dist/Mesa/src/glsl/lower_output_reads.cpp U xenocara/dist/Mesa/src/glsl/lower_packed_varyings.cpp U xenocara/dist/Mesa/src/glsl/lower_packing_builtins.cpp U xenocara/dist/Mesa/src/glsl/lower_texture_projection.cpp U xenocara/dist/Mesa/src/glsl/lower_ubo_reference.cpp U xenocara/dist/Mesa/src/glsl/lower_variable_index_to_cond_assign.cpp U xenocara/dist/Mesa/src/glsl/lower_vec_index_to_cond_assign.cpp U xenocara/dist/Mesa/src/glsl/lower_vec_index_to_swizzle.cpp U xenocara/dist/Mesa/src/glsl/lower_vector.cpp U xenocara/dist/Mesa/src/glsl/lower_vector_insert.cpp U xenocara/dist/Mesa/src/glsl/main.cpp U xenocara/dist/Mesa/src/glsl/opt_algebraic.cpp U xenocara/dist/Mesa/src/glsl/opt_array_splitting.cpp U xenocara/dist/Mesa/src/glsl/opt_constant_folding.cpp U xenocara/dist/Mesa/src/glsl/opt_cse.cpp U xenocara/dist/Mesa/src/glsl/opt_constant_propagation.cpp U xenocara/dist/Mesa/src/glsl/opt_constant_variable.cpp U xenocara/dist/Mesa/src/glsl/opt_copy_propagation.cpp U xenocara/dist/Mesa/src/glsl/opt_copy_propagation_elements.cpp U xenocara/dist/Mesa/src/glsl/opt_dead_builtin_varyings.cpp U xenocara/dist/Mesa/src/glsl/opt_dead_code.cpp U xenocara/dist/Mesa/src/glsl/opt_dead_code_local.cpp U xenocara/dist/Mesa/src/glsl/opt_dead_functions.cpp U xenocara/dist/Mesa/src/glsl/opt_flatten_nested_if_blocks.cpp U xenocara/dist/Mesa/src/glsl/opt_flip_matrices.cpp U xenocara/dist/Mesa/src/glsl/opt_function_inlining.cpp U xenocara/dist/Mesa/src/glsl/opt_if_simplification.cpp U xenocara/dist/Mesa/src/glsl/opt_noop_swizzle.cpp U xenocara/dist/Mesa/src/glsl/opt_redundant_jumps.cpp U xenocara/dist/Mesa/src/glsl/opt_structure_splitting.cpp U xenocara/dist/Mesa/src/glsl/opt_swizzle_swizzle.cpp U xenocara/dist/Mesa/src/glsl/opt_tree_grafting.cpp U xenocara/dist/Mesa/src/glsl/opt_vectorize.cpp U xenocara/dist/Mesa/src/glsl/program.h U xenocara/dist/Mesa/src/glsl/ralloc.c U xenocara/dist/Mesa/src/glsl/ralloc.h U xenocara/dist/Mesa/src/glsl/s_expression.cpp U xenocara/dist/Mesa/src/glsl/s_expression.h U xenocara/dist/Mesa/src/glsl/standalone_scaffolding.cpp U xenocara/dist/Mesa/src/glsl/standalone_scaffolding.h U xenocara/dist/Mesa/src/glsl/strtod.c U xenocara/dist/Mesa/src/glsl/strtod.h U xenocara/dist/Mesa/src/glsl/test.cpp U xenocara/dist/Mesa/src/glsl/test_optpass.cpp U xenocara/dist/Mesa/src/glsl/test_optpass.h C xenocara/dist/Mesa/src/glsl/glcpp/glcpp-lex.c U xenocara/dist/Mesa/src/glsl/glcpp/glcpp-parse.c U xenocara/dist/Mesa/src/glsl/glcpp/glcpp-parse.h U xenocara/dist/Mesa/src/glsl/glcpp/README U xenocara/dist/Mesa/src/glsl/glcpp/glcpp-lex.l U xenocara/dist/Mesa/src/glsl/glcpp/glcpp-parse.y U xenocara/dist/Mesa/src/glsl/glcpp/glcpp.c U xenocara/dist/Mesa/src/glsl/glcpp/glcpp.h U xenocara/dist/Mesa/src/glsl/glcpp/pp.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/000-content-with-spaces.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/000-content-with-spaces.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/001-define.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/001-define.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/002-define-chain.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/002-define-chain.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/003-define-chain-reverse.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/003-define-chain-reverse.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/004-define-recursive.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/004-define-recursive.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/005-define-composite-chain.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/005-define-composite-chain.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/008-define-empty.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/006-define-composite-chain-reverse.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/006-define-composite-chain-reverse.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/007-define-composite-recursive.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/007-define-composite-recursive.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/008-define-empty.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/009-undef.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/009-undef.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/010-undef-re-define.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/010-undef-re-define.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/011-define-func-empty.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/011-define-func-empty.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/012-define-func-no-args.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/013-define-func-1-arg-unused.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/012-define-func-no-args.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/013-define-func-1-arg-unused.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/014-define-func-2-arg-unused.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/014-define-func-2-arg-unused.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/015-define-object-with-parens.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/015-define-object-with-parens.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/016-define-func-1-arg.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/016-define-func-1-arg.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/017-define-func-2-args.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/017-define-func-2-args.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/018-define-func-macro-as-parameter.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/021-define-func-compose.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/019-define-func-1-arg-multi.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/018-define-func-macro-as-parameter.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/019-define-func-1-arg-multi.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/020-define-func-2-arg-multi.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/020-define-func-2-arg-multi.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/021-define-func-compose.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/022-define-func-arg-with-parens.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/022-define-func-arg-with-parens.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/023-define-extra-whitespace.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/023-define-extra-whitespace.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/024-define-chain-to-self-recursion.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/024-define-chain-to-self-recursion.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/025-func-macro-as-non-macro.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/025-func-macro-as-non-macro.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/026-define-func-extra-newlines.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/026-define-func-extra-newlines.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/027-define-chain-obj-to-func.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/027-define-chain-obj-to-func.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/028-define-chain-obj-to-non-func.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/028-define-chain-obj-to-non-func.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/029-define-chain-obj-to-func-with-args.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/038-func-arg-with-commas.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/029-define-chain-obj-to-func-with-args.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/030-define-chain-obj-to-func-compose.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/030-define-chain-obj-to-func-compose.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/031-define-chain-func-to-func-compose.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/031-define-chain-func-to-func-compose.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/032-define-func-self-recurse.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/032-define-func-self-recurse.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/033-define-func-self-compose.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/033-define-func-self-compose.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/034-define-func-self-compose-non-func.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/034-define-func-self-compose-non-func.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/035-define-func-self-compose-non-func-multi-token-argument.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/035-define-func-self-compose-non-func-multi-token-argument.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/036-define-func-non-macro-multi-token-argument.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/036-define-func-non-macro-multi-token-argument.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/037-finalize-unexpanded-macro.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/037-finalize-unexpanded-macro.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/038-func-arg-with-commas.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/040-token-pasting.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/039-func-arg-obj-macro-with-comma.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/039-func-arg-obj-macro-with-comma.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/040-token-pasting.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/041-if-0.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/041-if-0.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/042-if-1.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/042-if-1.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/043-if-0-else.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/043-if-0-else.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/044-if-1-else.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/044-if-1-else.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/045-if-0-elif.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/045-if-0-elif.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/046-if-1-elsif.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/046-if-1-elsif.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/047-if-elif-else.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/047-if-elif-else.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/048-if-nested.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/048-if-nested.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/049-if-expression-precedence.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/049-if-expression-precedence.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/050-if-defined.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/050-if-defined.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/051-if-relational.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/051-if-relational.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/052-if-bitwise.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/052-if-bitwise.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/053-if-divide-and-shift.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/053-if-divide-and-shift.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/054-if-with-macros.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/glcpp-test U xenocara/dist/Mesa/src/glsl/glcpp/tests/054-if-with-macros.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/055-define-chain-obj-to-func-parens-in-text.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/055-define-chain-obj-to-func-parens-in-text.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/056-macro-argument-with-comma.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/056-macro-argument-with-comma.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/057-empty-arguments.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/057-empty-arguments.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/058-token-pasting-empty-arguments.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/058-token-pasting-empty-arguments.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/059-token-pasting-integer.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/059-token-pasting-integer.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/060-left-paren-in-macro-right-paren-in-text.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/060-left-paren-in-macro-right-paren-in-text.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/061-define-chain-obj-to-func-multi.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/061-define-chain-obj-to-func-multi.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/062-if-0-skips-garbage.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/062-if-0-skips-garbage.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/063-comments.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/063-comments.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/064-version.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/064-version.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/065-if-defined-parens.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/065-if-defined-parens.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/066-if-nospace-expression.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/066-if-nospace-expression.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/067-nested-ifdef-ifndef.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/067-nested-ifdef-ifndef.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/068-accidental-pasting.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/068-accidental-pasting.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/069-repeated-argument.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/069-repeated-argument.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/070-undefined-macro-in-expression.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/070-undefined-macro-in-expression.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/071-punctuator.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/071-punctuator.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/073-if-in-ifdef.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/072-token-pasting-same-line.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/072-token-pasting-same-line.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/073-if-in-ifdef.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/074-elif-undef.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/074-elif-undef.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/075-elif-elif-undef.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/075-elif-elif-undef.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/076-elif-undef-nested.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/076-elif-undef-nested.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/077-else-without-if.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/077-else-without-if.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/078-elif-without-if.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/078-elif-without-if.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/079-endif-without-if.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/079-endif-without-if.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/080-if-without-expression.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/080-if-without-expression.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/081-elif-without-expression.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/081-elif-without-expression.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/082-invalid-paste.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/082-invalid-paste.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/083-unterminated-if.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/083-unterminated-if.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/084-unbalanced-parentheses.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/084-unbalanced-parentheses.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/085-incorrect-argument-count.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/087-if-comments.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/085-incorrect-argument-count.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/086-reserved-macro-names.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/086-reserved-macro-names.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/087-if-comments.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/088-redefine-macro-legitimate.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/088-redefine-macro-legitimate.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/089-redefine-macro-error.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/089-redefine-macro-error.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/090-hash-error.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/090-hash-error.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/091-hash-line.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/091-hash-line.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/092-redefine-macro-error-2.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/092-redefine-macro-error-2.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/093-divide-by-zero.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/093-divide-by-zero.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/094-divide-by-zero-short-circuit.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/094-divide-by-zero-short-circuit.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/095-recursive-define.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/095-recursive-define.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/096-paste-twice.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/096-paste-twice.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/097-paste-with-non-function-macro.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/097-paste-with-non-function-macro.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/098-elif-undefined.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/099-c99-example.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/098-elif-undefined.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/099-c99-example.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/100-macro-with-colon.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/100-macro-with-colon.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/101-macros-used-twice.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/101-macros-used-twice.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/102-garbage-after-endif.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/102-garbage-after-endif.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/103-garbage-after-else.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/103-garbage-after-else.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/104-hash-line-followed-by-code.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/104-hash-line-followed-by-code.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/106-multiline-hash-if.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/105-multiline-hash-line.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/105-multiline-hash-line.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/106-multiline-hash-if.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/107-multiline-hash-elif.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/107-multiline-hash-elif.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/108-no-space-after-hash-version.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/108-no-space-after-hash-version.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/109-no-space-after-hash-line.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/109-no-space-after-hash-line.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/110-no-space-digits-after-hash-elif.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/110-no-space-digits-after-hash-elif.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/111-no-space-operator-after-hash-if.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/111-no-space-operator-after-hash-if.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/112-no-space-operator-after-hash-elif.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/112-no-space-operator-after-hash-elif.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/113-line-and-file-macros.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/113-line-and-file-macros.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/114-paste-integer-tokens.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/114-paste-integer-tokens.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/115-line-continuations.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/115-line-continuations.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/116-disable-line-continuations.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/116-disable-line-continuations.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/117-line-continuation-and-non-continuation-backslash.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/117-line-continuation-and-non-continuation-backslash.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/118-comment-becomes-space.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/118-comment-becomes-space.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/118-multiple-else.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/118-multiple-else.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/119-elif-after-else.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/119-elif-after-else.c.expected U xenocara/dist/Mesa/src/glsl/glcpp/tests/121-comment-bug-72686.c U xenocara/dist/Mesa/src/glsl/glcpp/tests/121-comment-bug-72686.c.expected U xenocara/dist/Mesa/src/glsl/tests/builtin_variable_test.cpp U xenocara/dist/Mesa/src/glsl/tests/common.c U xenocara/dist/Mesa/src/glsl/tests/compare_ir U xenocara/dist/Mesa/src/glsl/tests/copy_constant_to_storage_tests.cpp U xenocara/dist/Mesa/src/glsl/tests/general_ir_test.cpp U xenocara/dist/Mesa/src/glsl/tests/invalidate_locations_test.cpp U xenocara/dist/Mesa/src/glsl/tests/optimization-test U xenocara/dist/Mesa/src/glsl/tests/ralloc_test.cpp U xenocara/dist/Mesa/src/glsl/tests/sampler_types_test.cpp U xenocara/dist/Mesa/src/glsl/tests/set_uniform_initializer_tests.cpp U xenocara/dist/Mesa/src/glsl/tests/sexps.py U xenocara/dist/Mesa/src/glsl/tests/uniform_initializer_utils.cpp U xenocara/dist/Mesa/src/glsl/tests/uniform_initializer_utils.h U xenocara/dist/Mesa/src/glsl/tests/varyings_test.cpp U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/create_test_cases.py U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_1.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_1.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_2.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_2.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_3.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_3.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_4.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_4.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_5.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_5.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_6.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_breaks_6.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_guarded_conditional_break.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_guarded_conditional_break.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_pulled_out_jump.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_pulled_out_jump.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_1.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_1.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_2.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_2.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_3.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_3.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_4.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_4.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_main_false.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_main_false.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_main_true.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_main_true.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_sub_false.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_sub_false.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_sub_true.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_returns_sub_true.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_unified_returns.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/lower_unified_returns.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/remove_continue_at_end_of_loop.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/remove_continue_at_end_of_loop.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_non_void_at_end_of_loop_lower_nothing.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_non_void_at_end_of_loop_lower_nothing.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_non_void_at_end_of_loop_lower_return.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_non_void_at_end_of_loop_lower_return.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_non_void_at_end_of_loop_lower_return_and_break.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_void_at_end_of_loop_lower_nothing.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_non_void_at_end_of_loop_lower_return_and_break.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_void_at_end_of_loop_lower_nothing.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_void_at_end_of_loop_lower_return.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_void_at_end_of_loop_lower_return.opt_test.expected U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_void_at_end_of_loop_lower_return_and_break.opt_test U xenocara/dist/Mesa/src/glsl/tests/lower_jumps/return_void_at_end_of_loop_lower_return_and_break.opt_test.expected U xenocara/dist/Mesa/src/glx/Makefile.in U xenocara/dist/Mesa/src/glx/Makefile.am U xenocara/dist/Mesa/src/glx/SConscript U xenocara/dist/Mesa/src/glx/XF86dri.c U xenocara/dist/Mesa/src/glx/applegl_glx.c U xenocara/dist/Mesa/src/glx/clientattrib.c U xenocara/dist/Mesa/src/glx/clientinfo.c U xenocara/dist/Mesa/src/glx/compsize.c U xenocara/dist/Mesa/src/glx/create_context.c U xenocara/dist/Mesa/src/glx/dri2.c U xenocara/dist/Mesa/src/glx/dri2.h U xenocara/dist/Mesa/src/glx/dri2_glx.c U xenocara/dist/Mesa/src/glx/dri2_priv.h U xenocara/dist/Mesa/src/glx/dri2_query_renderer.c U xenocara/dist/Mesa/src/glx/dri3_glx.c U xenocara/dist/Mesa/src/glx/dri3_priv.h U xenocara/dist/Mesa/src/glx/dri_common.c U xenocara/dist/Mesa/src/glx/dri_common.h U xenocara/dist/Mesa/src/glx/dri_glx.c U xenocara/dist/Mesa/src/glx/drisw_glx.c U xenocara/dist/Mesa/src/glx/eval.c U xenocara/dist/Mesa/src/glx/glx_error.c U xenocara/dist/Mesa/src/glx/glx_error.h U xenocara/dist/Mesa/src/glx/glx_pbuffer.c U xenocara/dist/Mesa/src/glx/glx_query.c U xenocara/dist/Mesa/src/glx/glxclient.h U xenocara/dist/Mesa/src/glx/glxcmds.c U xenocara/dist/Mesa/src/glx/glxconfig.c U xenocara/dist/Mesa/src/glx/glxconfig.h U xenocara/dist/Mesa/src/glx/glxcurrent.c U xenocara/dist/Mesa/src/glx/glxext.c U xenocara/dist/Mesa/src/glx/glxextensions.c U xenocara/dist/Mesa/src/glx/glxextensions.h U xenocara/dist/Mesa/src/glx/glxhash.c U xenocara/dist/Mesa/src/glx/glxhash.h U xenocara/dist/Mesa/src/glx/indirect_glx.c U xenocara/dist/Mesa/src/glx/indirect_init.h U xenocara/dist/Mesa/src/glx/indirect_texture_compression.c U xenocara/dist/Mesa/src/glx/indirect_transpose_matrix.c U xenocara/dist/Mesa/src/glx/indirect_vertex_array.c U xenocara/dist/Mesa/src/glx/indirect_vertex_array.h U xenocara/dist/Mesa/src/glx/packrender.h U xenocara/dist/Mesa/src/glx/packsingle.h U xenocara/dist/Mesa/src/glx/indirect_vertex_array_priv.h U xenocara/dist/Mesa/src/glx/indirect_vertex_program.c U xenocara/dist/Mesa/src/glx/indirect_window_pos.c U xenocara/dist/Mesa/src/glx/pixel.c U xenocara/dist/Mesa/src/glx/pixelstore.c U xenocara/dist/Mesa/src/glx/query_renderer.c U xenocara/dist/Mesa/src/glx/render2.c U xenocara/dist/Mesa/src/glx/renderpix.c U xenocara/dist/Mesa/src/glx/single2.c U xenocara/dist/Mesa/src/glx/singlepix.c U xenocara/dist/Mesa/src/glx/vertarr.c U xenocara/dist/Mesa/src/glx/xf86dri.h U xenocara/dist/Mesa/src/glx/xf86dristr.h U xenocara/dist/Mesa/src/glx/xfont.c U xenocara/dist/Mesa/src/glx/tests/Makefile.in U xenocara/dist/Mesa/src/glx/tests/Makefile.am U xenocara/dist/Mesa/src/glx/tests/clientinfo_unittest.cpp U xenocara/dist/Mesa/src/glx/tests/create_context_unittest.cpp U xenocara/dist/Mesa/src/glx/tests/enum_sizes.cpp U xenocara/dist/Mesa/src/glx/tests/fake_glx_screen.cpp U xenocara/dist/Mesa/src/glx/tests/fake_glx_screen.h U xenocara/dist/Mesa/src/glx/tests/indirect_api.cpp U xenocara/dist/Mesa/src/glx/tests/mock_xdisplay.h U xenocara/dist/Mesa/src/glx/tests/query_renderer_implementation_unittest.cpp U xenocara/dist/Mesa/src/glx/tests/query_renderer_unittest.cpp U xenocara/dist/Mesa/src/glx/apple/Makefile U xenocara/dist/Mesa/src/glx/apple/RELEASE_NOTES U xenocara/dist/Mesa/src/glx/apple/TODO U xenocara/dist/Mesa/src/glx/apple/apple_cgl.c U xenocara/dist/Mesa/src/glx/apple/apple_cgl.h U xenocara/dist/Mesa/src/glx/apple/apple_glapi.c U xenocara/dist/Mesa/src/glx/apple/apple_glx.c U xenocara/dist/Mesa/src/glx/apple/apple_glx.h U xenocara/dist/Mesa/src/glx/apple/apple_glx_context.c U xenocara/dist/Mesa/src/glx/apple/apple_glx_context.h U xenocara/dist/Mesa/src/glx/apple/apple_glx_drawable.c U xenocara/dist/Mesa/src/glx/apple/apple_glx_drawable.h U xenocara/dist/Mesa/src/glx/apple/apple_glx_log.c U xenocara/dist/Mesa/src/glx/apple/apple_glx_log.h U xenocara/dist/Mesa/src/glx/apple/apple_glx_pbuffer.c U xenocara/dist/Mesa/src/glx/apple/apple_glx_pixmap.c U xenocara/dist/Mesa/src/glx/apple/apple_glx_surface.c U xenocara/dist/Mesa/src/glx/apple/apple_visual.c U xenocara/dist/Mesa/src/glx/apple/apple_visual.h U xenocara/dist/Mesa/src/glx/apple/apple_xgl_api.h U xenocara/dist/Mesa/src/glx/apple/apple_xgl_api_read.c U xenocara/dist/Mesa/src/glx/apple/apple_xgl_api_stereo.c U xenocara/dist/Mesa/src/glx/apple/apple_xgl_api_viewport.c U xenocara/dist/Mesa/src/glx/apple/appledri.c U xenocara/dist/Mesa/src/glx/apple/appledri.h U xenocara/dist/Mesa/src/glx/apple/appledristr.h U xenocara/dist/Mesa/src/glx/apple/glx_empty.c U xenocara/dist/Mesa/src/glx/apple/glxreply.c U xenocara/dist/Mesa/src/gtest/Makefile.in U xenocara/dist/Mesa/src/gtest/Makefile.am U xenocara/dist/Mesa/src/gtest/include/gtest/gtest-death-test.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest-message.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest-param-test.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest-param-test.h.pump U xenocara/dist/Mesa/src/gtest/include/gtest/gtest-printers.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest-spi.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest-test-part.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest-typed-test.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest_pred_impl.h U xenocara/dist/Mesa/src/gtest/include/gtest/gtest_prod.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-death-test-internal.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-filepath.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-internal.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-linked_ptr.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-param-util-generated.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-param-util-generated.h.pump U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-param-util.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-port.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-string.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-tuple.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-tuple.h.pump U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-type-util.h U xenocara/dist/Mesa/src/gtest/include/gtest/internal/gtest-type-util.h.pump U xenocara/dist/Mesa/src/gtest/src/gtest-all.cc U xenocara/dist/Mesa/src/gtest/src/gtest-death-test.cc U xenocara/dist/Mesa/src/gtest/src/gtest-filepath.cc U xenocara/dist/Mesa/src/gtest/src/gtest-internal-inl.h U xenocara/dist/Mesa/src/gtest/src/gtest-port.cc U xenocara/dist/Mesa/src/gtest/src/gtest-printers.cc U xenocara/dist/Mesa/src/gtest/src/gtest-test-part.cc U xenocara/dist/Mesa/src/gtest/src/gtest-typed-test.cc U xenocara/dist/Mesa/src/gtest/src/gtest.cc U xenocara/dist/Mesa/src/gtest/src/gtest_main.cc U xenocara/dist/Mesa/src/loader/Makefile.in U xenocara/dist/Mesa/src/loader/Android.mk U xenocara/dist/Mesa/src/loader/Makefile.am U xenocara/dist/Mesa/src/loader/Makefile.sources U xenocara/dist/Mesa/src/loader/SConscript U xenocara/dist/Mesa/src/loader/loader.c U xenocara/dist/Mesa/src/loader/loader.h U xenocara/dist/Mesa/src/loader/pci_id_driver_map.c U xenocara/dist/Mesa/src/loader/pci_id_driver_map.h U xenocara/dist/Mesa/src/mapi/Makefile.in U xenocara/dist/Mesa/src/mapi/Android.mk U xenocara/dist/Mesa/src/mapi/Makefile.am U xenocara/dist/Mesa/src/mapi/Makefile.sources U xenocara/dist/Mesa/src/mapi/entry.c U xenocara/dist/Mesa/src/mapi/entry.h U xenocara/dist/Mesa/src/mapi/entry_x86-64_tls.h U xenocara/dist/Mesa/src/mapi/entry_x86_tls.h U xenocara/dist/Mesa/src/mapi/entry_x86_tsd.h U xenocara/dist/Mesa/src/mapi/mapi.c U xenocara/dist/Mesa/src/mapi/mapi.h U xenocara/dist/Mesa/src/mapi/mapi_abi.py U xenocara/dist/Mesa/src/mapi/mapi_glapi.c U xenocara/dist/Mesa/src/mapi/mapi_tmp.h U xenocara/dist/Mesa/src/mapi/stub.c U xenocara/dist/Mesa/src/mapi/stub.h U xenocara/dist/Mesa/src/mapi/table.c U xenocara/dist/Mesa/src/mapi/table.h U xenocara/dist/Mesa/src/mapi/u_compiler.h U xenocara/dist/Mesa/src/mapi/u_current.c U xenocara/dist/Mesa/src/mapi/u_current.h U xenocara/dist/Mesa/src/mapi/u_execmem.c U xenocara/dist/Mesa/src/mapi/u_execmem.h U xenocara/dist/Mesa/src/mapi/u_macros.h U xenocara/dist/Mesa/src/mapi/u_thread.h U xenocara/dist/Mesa/src/mapi/es1api/Makefile.in U xenocara/dist/Mesa/src/mapi/es1api/ABI-check U xenocara/dist/Mesa/src/mapi/es1api/Makefile.am U xenocara/dist/Mesa/src/mapi/es1api/glesv1_cm.pc.in U xenocara/dist/Mesa/src/mapi/es2api/Makefile.in U xenocara/dist/Mesa/src/mapi/es2api/ABI-check U xenocara/dist/Mesa/src/mapi/es2api/Makefile.am U xenocara/dist/Mesa/src/mapi/es2api/glesv2.pc.in U xenocara/dist/Mesa/src/mapi/glapi/Makefile.in U xenocara/dist/Mesa/src/mapi/glapi/Makefile.am U xenocara/dist/Mesa/src/mapi/glapi/Makefile.sources U xenocara/dist/Mesa/src/mapi/glapi/SConscript U xenocara/dist/Mesa/src/mapi/glapi/glapi.c U xenocara/dist/Mesa/src/mapi/glapi/glapi.h U xenocara/dist/Mesa/src/mapi/glapi/glapi_dispatch.c U xenocara/dist/Mesa/src/mapi/glapi/glapi_entrypoint.c U xenocara/dist/Mesa/src/mapi/glapi/glapi_getproc.c U xenocara/dist/Mesa/src/mapi/glapi/glapi_nop.c U xenocara/dist/Mesa/src/mapi/glapi/glapi_priv.h U xenocara/dist/Mesa/src/mapi/glapi/gen/Makefile.in U xenocara/dist/Mesa/src/mapi/glapi/gen/AMD_draw_buffers_blend.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/AMD_performance_monitor.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/APPLE_object_purgeable.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/APPLE_vertex_array_object.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_ES2_compatibility.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_ES3_compatibility.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_base_instance.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_blend_func_extended.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_clear_buffer_object.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_color_buffer_float.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_compute_shader.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_copy_buffer.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_debug_output.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_depth_buffer_float.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_depth_clamp.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_draw_buffers.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_draw_buffers_blend.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_draw_elements_base_vertex.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_draw_indirect.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_draw_instanced.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_framebuffer_object.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_geometry_shader4.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_get_program_binary.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_gpu_shader5.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_instanced_arrays.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_internalformat_query.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_invalidate_subdata.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_sync.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_map_buffer_range.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_multi_bind.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_robustness.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_sample_shading.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_sampler_objects.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_seamless_cube_map.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_separate_shader_objects.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_shader_atomic_counters.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_shader_image_load_store.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_buffer_object.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_buffer_range.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_compression_rgtc.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_cube_map_array.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_float.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_gather.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_multisample.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_rg.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_rgb10_a2ui.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_storage.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_storage_multisample.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_texture_view.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_uniform_buffer_object.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_vertex_array_object.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_vertex_attrib_binding.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_vertex_type_2_10_10_10_rev.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/ARB_viewport_array.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_draw_buffers2.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_framebuffer_object.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_gpu_shader4.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_packed_depth_stencil.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_provoking_vertex.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_separate_shader_objects.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_texture_array.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_texture_integer.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/EXT_transform_feedback.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/GL3x.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/GL4x.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/INTEL_performance_query.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/KHR_debug.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/Makefile.am U xenocara/dist/Mesa/src/mapi/glapi/gen/NV_conditional_render.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/NV_primitive_restart.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/NV_texture_barrier.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/NV_vdpau_interop.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/OES_EGL_image.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/OES_fixed_point.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/OES_single_precision.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/SConscript U xenocara/dist/Mesa/src/mapi/glapi/gen/es_EXT.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/extension_helper.py U xenocara/dist/Mesa/src/mapi/glapi/gen/glX_API.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/glX_XML.py U xenocara/dist/Mesa/src/mapi/glapi/gen/glX_proto_common.py U xenocara/dist/Mesa/src/mapi/glapi/gen/glX_proto_recv.py U xenocara/dist/Mesa/src/mapi/glapi/gen/glX_proto_send.py U xenocara/dist/Mesa/src/mapi/glapi/gen/glX_proto_size.py U xenocara/dist/Mesa/src/mapi/glapi/gen/glX_server_table.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_API.dtd U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_API.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_SPARC_asm.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_XML.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_and_es_API.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_and_glX_API.xml U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_apitemp.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_enums.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_genexec.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_gentable.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_offsets.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_procs.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_table.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_x86-64_asm.py U xenocara/dist/Mesa/src/mapi/glapi/gen/gl_x86_asm.py U xenocara/dist/Mesa/src/mapi/glapi/gen/glapi_gen.mk U xenocara/dist/Mesa/src/mapi/glapi/gen/license.py U xenocara/dist/Mesa/src/mapi/glapi/gen/mesadef.py U xenocara/dist/Mesa/src/mapi/glapi/gen/next_available_offset.sh U xenocara/dist/Mesa/src/mapi/glapi/gen/remap_helper.py U xenocara/dist/Mesa/src/mapi/glapi/gen/typeexpr.py U xenocara/dist/Mesa/src/mapi/glapi/tests/Makefile.in U xenocara/dist/Mesa/src/mapi/glapi/tests/Makefile.am U xenocara/dist/Mesa/src/mapi/glapi/tests/check_table.cpp U xenocara/dist/Mesa/src/mapi/shared-glapi/Makefile.in U xenocara/dist/Mesa/src/mapi/shared-glapi/Makefile.am U xenocara/dist/Mesa/src/mapi/shared-glapi/SConscript U xenocara/dist/Mesa/src/mapi/shared-glapi/tests/Makefile.in U xenocara/dist/Mesa/src/mapi/shared-glapi/tests/Makefile.am U xenocara/dist/Mesa/src/mapi/shared-glapi/tests/check_table.cpp U xenocara/dist/Mesa/src/mapi/vgapi/Makefile.in U xenocara/dist/Mesa/src/mapi/vgapi/Makefile.am U xenocara/dist/Mesa/src/mapi/vgapi/SConscript U xenocara/dist/Mesa/src/mapi/vgapi/vg.pc.in U xenocara/dist/Mesa/src/mapi/vgapi/vgapi.csv U xenocara/dist/Mesa/src/mesa/Makefile.in U xenocara/dist/Mesa/src/mesa/Android.gen.mk U xenocara/dist/Mesa/src/mesa/Android.libmesa_dricore.mk U xenocara/dist/Mesa/src/mesa/Android.libmesa_glsl_utils.mk U xenocara/dist/Mesa/src/mesa/Android.libmesa_st_mesa.mk U xenocara/dist/Mesa/src/mesa/Android.mesa_gen_matypes.mk U xenocara/dist/Mesa/src/mesa/Android.mk U xenocara/dist/Mesa/src/mesa/Makefile.am U xenocara/dist/Mesa/src/mesa/Makefile.sources U xenocara/dist/Mesa/src/mesa/SConscript U xenocara/dist/Mesa/src/mesa/gl.pc.in U xenocara/dist/Mesa/src/mesa/drivers/SConscript U xenocara/dist/Mesa/src/mesa/drivers/dri/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/Android.mk U xenocara/dist/Mesa/src/mesa/drivers/dri/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/dri.pc.in U xenocara/dist/Mesa/src/mesa/drivers/dri/gen-symbol-redefs.py U xenocara/dist/Mesa/src/mesa/drivers/dri/common/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/common/Android.mk U xenocara/dist/Mesa/src/mesa/drivers/dri/common/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/common/Makefile.sources U xenocara/dist/Mesa/src/mesa/drivers/dri/common/SConscript U xenocara/dist/Mesa/src/mesa/drivers/dri/common/dri_test.c U xenocara/dist/Mesa/src/mesa/drivers/dri/common/dri_util.c U xenocara/dist/Mesa/src/mesa/drivers/dri/common/dri_util.h U xenocara/dist/Mesa/src/mesa/drivers/dri/common/drirc U xenocara/dist/Mesa/src/mesa/drivers/dri/common/megadriver_stub.c U xenocara/dist/Mesa/src/mesa/drivers/dri/common/mmio.h U xenocara/dist/Mesa/src/mesa/drivers/dri/common/utils.c U xenocara/dist/Mesa/src/mesa/drivers/dri/common/utils.h U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlconfig.c U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlconfig.h U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool.h U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/SConscript U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/ca.po U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/de.po U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/es.po U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/fr.po U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/gen_xmlpool.py U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/nl.po U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/sv.po U xenocara/dist/Mesa/src/mesa/drivers/dri/common/xmlpool/t_options.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/Android.mk U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/Makefile.sources U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i830_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i830_context.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i830_reg.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i830_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i830_texblend.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i830_texstate.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i830_vtbl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_context.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_debug.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_debug_fp.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_fragprog.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_program.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_program.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_reg.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_tex_layout.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_texstate.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/i915_vtbl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_batchbuffer.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_batchbuffer.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_blit.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_blit.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_buffer_objects.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_buffer_objects.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_buffers.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_buffers.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_chipset.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_clear.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_clear.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_context.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_extensions.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_extensions.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_fbo.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_fbo.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_mipmap_tree.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_mipmap_tree.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_pixel.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_pixel.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_pixel_bitmap.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_pixel_copy.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_pixel_draw.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_pixel_read.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_reg.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_regions.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_regions.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_render.c C xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_screen.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_screen.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_syncobj.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex_copy.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex_image.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex_layout.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex_layout.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex_obj.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex_subimage.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tex_validate.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tris.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i915/intel_tris.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/Android.mk U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/Makefile.sources U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_binding_tables.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_blorp.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_blorp.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_cc.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_cfg.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_cfg.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clear.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clip.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clip.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clip_line.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clip_point.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clip_tri.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clip_state.c C xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clip_unfilled.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_clip_util.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_context.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_cubemap_normalize.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_curbe.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_dead_control_flow.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_dead_control_flow.h C xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_defines.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_device_info.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_device_info.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_disasm.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_draw.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_draw.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_draw_upload.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_eu.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_eu.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_eu_compact.c C xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_eu_emit.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_eu_util.c C xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_cse.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_dead_code_eliminate.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_fp.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_generator.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_live_variables.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_live_variables.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_peephole_predicated_break.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_register_coalesce.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_saturate_propagation.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_gs.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_sel_peephole.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp C xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_gs.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_gs_emit.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_gs_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_gs_surface_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_interpolation_map.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_lower_texture_gradients.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_lower_unnormalized_offset.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_meta_stencil_blit.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_meta_updownsample.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_meta_util.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_meta_util.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_misc_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_multisample_state.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_program.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_object_purgeable.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_performance_monitor.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_primitive_restart.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_program.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_queryobj.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_reg.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_reset.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_schedule_instructions.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_sf.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_sf.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_sf_emit.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_sf_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_shader.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_shader.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_state.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_state_batch.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_state_cache.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_state_dump.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_state_upload.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_structs.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_surface_formats.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_tex.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_tex_layout.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_urb.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_util.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_util.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_gs.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_gs.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_gs_visitor.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_gs_visitor.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_live_variables.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_live_variables.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_vp.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vec4_vs_visitor.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vs.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vs.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vs_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_vs_surface_state.c C xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_wm.c C xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_wm.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_wm_iz.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_wm_sampler_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_wm_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/brw_wm_surface_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_blorp.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_blorp.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_cc.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_clip_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_depthstencil.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_gs_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_queryobj.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_multisample_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_sampler_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_scissor_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_sf_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_sol.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_urb.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_viewport_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_vs_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen6_wm_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_blorp.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_blorp.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_disable.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_gs_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_misc_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_sampler_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_sf_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_sol_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_urb.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_viewport_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_vs_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_wm_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_blend_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_depth_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_disable.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_disasm.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_draw_upload.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_fs_generator.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_generator.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_generator.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_gs_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_instruction.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_instruction.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_misc_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_multisample_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_ps_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_sf_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_fbo.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_sol_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_surface_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_vec4_generator.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_viewport_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_vs_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/gen8_wm_depth_stencil.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_batchbuffer.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_batchbuffer.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_blit.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_blit.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_buffer_objects.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_buffer_objects.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_buffers.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_buffers.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_chipset.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_debug.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_debug.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_extensions.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_fbo.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_image.h C xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_mipmap_tree.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_mipmap_tree.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_pixel.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_pixel.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_pixel_bitmap.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_pixel_copy.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_pixel_draw.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_pixel_read.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_reg.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_resolve_map.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_resolve_map.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_screen.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_screen.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_syncobj.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_tex.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_tex.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_tex_copy.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_tex_image.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_tex_obj.h U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_tex_subimage.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_tex_validate.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/intel_upload.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/test_blorp_blit_eu_gen.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/test_eu_compact.c U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/test_vec4_copy_propagation.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/i965/test_vec4_register_coalesce.cpp U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/Makefile.sources U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_array.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_array.h C xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_context.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_driver.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_driver.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_fbo.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_fbo.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_gldefs.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_local.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_render.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_render_t.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_scratch.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_scratch.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_screen.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_screen.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_span.c C xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_state.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_state.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_surface.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_surface.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_swtnl_t.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_texture.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_texture.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_util.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nouveau_vbo_t.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv01_2d.xml.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_3d.xml.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_context.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_driver.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_render.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_state_fb.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_state_frag.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_state_raster.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_state_tex.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv04_surface.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_3d.xml.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_driver.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_render.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_state_fb.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_state_frag.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_state_polygon.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_state_raster.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_state_tex.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv10_state_tnl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_3d.xml.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_driver.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_render.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_state_fb.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_state_frag.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_state_polygon.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_state_raster.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_state_tex.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv20_state_tnl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv_m2mf.xml.h U xenocara/dist/Mesa/src/mesa/drivers/dri/nouveau/nv_object.xml.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/Doxyfile U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/Makefile.sources U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_blit.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_blit.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_cmdbuf.c C xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_context.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_fragshader.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_ioctl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_ioctl.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_maos.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_maos.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_maos_arrays.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_reg.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_sanity.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_sanity.h C xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_state.c C xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_state.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_state_init.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_swtcl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_swtcl.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_tcl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_tcl.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_tex.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_tex.h U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_texstate.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_vertprog.c U xenocara/dist/Mesa/src/mesa/drivers/dri/r200/r200_vertprog.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/Makefile.sources U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_blit.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_blit.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_buffer_objects.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_buffer_objects.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_chipset.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_cmdbuf.h C xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_common.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_common.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_common_context.c C xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_common_context.h C xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_context.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_context.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_debug.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_debug.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_dma.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_dma.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_fbo.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_fog.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_fog.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_ioctl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_ioctl.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_maos.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_maos.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_maos_vbtmp.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_maos_verts.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_mipmap_tree.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_mipmap_tree.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_pixel_read.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_queryobj.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_queryobj.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_sanity.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_sanity.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_screen.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_screen.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_span.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_span.h C xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_state.c C xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_state.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_state_init.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_swtcl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_swtcl.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_tcl.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_tcl.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_tex.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_tex.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_tex_copy.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_texstate.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_texture.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_texture.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_tile.c U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/radeon_tile.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/server/radeon_dri.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/server/radeon_macros.h U xenocara/dist/Mesa/src/mesa/drivers/dri/radeon/server/radeon_reg.h U xenocara/dist/Mesa/src/mesa/drivers/dri/swrast/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/dri/swrast/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/dri/swrast/Makefile.sources U xenocara/dist/Mesa/src/mesa/drivers/dri/swrast/swrast.c U xenocara/dist/Mesa/src/mesa/drivers/dri/swrast/swrast_priv.h U xenocara/dist/Mesa/src/mesa/drivers/osmesa/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/osmesa/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/osmesa/SConscript U xenocara/dist/Mesa/src/mesa/drivers/osmesa/osmesa.c U xenocara/dist/Mesa/src/mesa/drivers/osmesa/osmesa.def U xenocara/dist/Mesa/src/mesa/drivers/osmesa/osmesa.pc.in U xenocara/dist/Mesa/src/mesa/drivers/x11/Makefile.in U xenocara/dist/Mesa/src/mesa/drivers/x11/Makefile.am U xenocara/dist/Mesa/src/mesa/drivers/x11/SConscript U xenocara/dist/Mesa/src/mesa/drivers/x11/fakeglx.c U xenocara/dist/Mesa/src/mesa/drivers/x11/glxapi.c U xenocara/dist/Mesa/src/mesa/drivers/x11/glxapi.h U xenocara/dist/Mesa/src/mesa/drivers/x11/glxheader.h U xenocara/dist/Mesa/src/mesa/drivers/x11/xfonts.c U xenocara/dist/Mesa/src/mesa/drivers/x11/xfonts.h U xenocara/dist/Mesa/src/mesa/drivers/x11/xm_api.c U xenocara/dist/Mesa/src/mesa/drivers/x11/xm_buffer.c U xenocara/dist/Mesa/src/mesa/drivers/x11/xm_dd.c U xenocara/dist/Mesa/src/mesa/drivers/x11/xm_line.c U xenocara/dist/Mesa/src/mesa/drivers/x11/xm_tri.c U xenocara/dist/Mesa/src/mesa/drivers/x11/xmesa.h U xenocara/dist/Mesa/src/mesa/drivers/x11/xmesaP.h U xenocara/dist/Mesa/src/mesa/drivers/x11/xmesa_x.h U xenocara/dist/Mesa/src/mesa/drivers/common/driverfuncs.c U xenocara/dist/Mesa/src/mesa/drivers/common/driverfuncs.h C xenocara/dist/Mesa/src/mesa/drivers/common/meta.c U xenocara/dist/Mesa/src/mesa/drivers/common/meta.h U xenocara/dist/Mesa/src/mesa/drivers/common/meta_blit.c U xenocara/dist/Mesa/src/mesa/drivers/common/meta_generate_mipmap.c U xenocara/dist/Mesa/src/mesa/drivers/haiku/swrast/SConscript U xenocara/dist/Mesa/src/mesa/drivers/haiku/swrast/SoftwareRast.cpp U xenocara/dist/Mesa/src/mesa/drivers/haiku/swrast/SoftwareRast.h U xenocara/dist/Mesa/src/mesa/drivers/haiku/swrast/SoftwareRast.rdef U xenocara/dist/Mesa/src/mesa/drivers/windows/gdi/SConscript U xenocara/dist/Mesa/src/mesa/drivers/windows/gdi/colors.h U xenocara/dist/Mesa/src/mesa/drivers/windows/gdi/mesa.def U xenocara/dist/Mesa/src/mesa/drivers/windows/gdi/wgl.c U xenocara/dist/Mesa/src/mesa/drivers/windows/gdi/wmesa.c U xenocara/dist/Mesa/src/mesa/drivers/windows/gdi/wmesadef.h U xenocara/dist/Mesa/src/mesa/main/accum.c U xenocara/dist/Mesa/src/mesa/main/accum.h U xenocara/dist/Mesa/src/mesa/main/api_arrayelt.c U xenocara/dist/Mesa/src/mesa/main/api_arrayelt.h U xenocara/dist/Mesa/src/mesa/main/api_exec.h U xenocara/dist/Mesa/src/mesa/main/api_loopback.c U xenocara/dist/Mesa/src/mesa/main/api_loopback.h U xenocara/dist/Mesa/src/mesa/main/api_validate.c U xenocara/dist/Mesa/src/mesa/main/api_validate.h U xenocara/dist/Mesa/src/mesa/main/arbprogram.c U xenocara/dist/Mesa/src/mesa/main/arbprogram.h U xenocara/dist/Mesa/src/mesa/main/arrayobj.c U xenocara/dist/Mesa/src/mesa/main/arrayobj.h U xenocara/dist/Mesa/src/mesa/main/atifragshader.c U xenocara/dist/Mesa/src/mesa/main/atifragshader.h U xenocara/dist/Mesa/src/mesa/main/attrib.c U xenocara/dist/Mesa/src/mesa/main/attrib.h U xenocara/dist/Mesa/src/mesa/main/bitset.h U xenocara/dist/Mesa/src/mesa/main/blend.c U xenocara/dist/Mesa/src/mesa/main/blend.h U xenocara/dist/Mesa/src/mesa/main/blit.c U xenocara/dist/Mesa/src/mesa/main/blit.h U xenocara/dist/Mesa/src/mesa/main/clear.c U xenocara/dist/Mesa/src/mesa/main/bufferobj.c U xenocara/dist/Mesa/src/mesa/main/bufferobj.h C xenocara/dist/Mesa/src/mesa/main/buffers.c U xenocara/dist/Mesa/src/mesa/main/buffers.h U xenocara/dist/Mesa/src/mesa/main/clear.h U xenocara/dist/Mesa/src/mesa/main/clip.c U xenocara/dist/Mesa/src/mesa/main/clip.h U xenocara/dist/Mesa/src/mesa/main/colormac.h U xenocara/dist/Mesa/src/mesa/main/colortab.c U xenocara/dist/Mesa/src/mesa/main/colortab.h U xenocara/dist/Mesa/src/mesa/main/compiler.h U xenocara/dist/Mesa/src/mesa/main/compute.c U xenocara/dist/Mesa/src/mesa/main/compute.h U xenocara/dist/Mesa/src/mesa/main/condrender.c U xenocara/dist/Mesa/src/mesa/main/condrender.h U xenocara/dist/Mesa/src/mesa/main/config.h C xenocara/dist/Mesa/src/mesa/main/context.c U xenocara/dist/Mesa/src/mesa/main/context.h U xenocara/dist/Mesa/src/mesa/main/convolve.c U xenocara/dist/Mesa/src/mesa/main/convolve.h U xenocara/dist/Mesa/src/mesa/main/core.h U xenocara/dist/Mesa/src/mesa/main/cpuinfo.c U xenocara/dist/Mesa/src/mesa/main/cpuinfo.h U xenocara/dist/Mesa/src/mesa/main/dd.h U xenocara/dist/Mesa/src/mesa/main/debug.c U xenocara/dist/Mesa/src/mesa/main/debug.h U xenocara/dist/Mesa/src/mesa/main/depth.c U xenocara/dist/Mesa/src/mesa/main/depth.h U xenocara/dist/Mesa/src/mesa/main/dlist.c U xenocara/dist/Mesa/src/mesa/main/dlist.h U xenocara/dist/Mesa/src/mesa/main/dlopen.h U xenocara/dist/Mesa/src/mesa/main/drawpix.c U xenocara/dist/Mesa/src/mesa/main/drawpix.h U xenocara/dist/Mesa/src/mesa/main/drawtex.c U xenocara/dist/Mesa/src/mesa/main/drawtex.h U xenocara/dist/Mesa/src/mesa/main/enable.c U xenocara/dist/Mesa/src/mesa/main/enable.h U xenocara/dist/Mesa/src/mesa/main/enums.h U xenocara/dist/Mesa/src/mesa/main/errors.c U xenocara/dist/Mesa/src/mesa/main/errors.h U xenocara/dist/Mesa/src/mesa/main/es1_conversion.c U xenocara/dist/Mesa/src/mesa/main/es1_conversion.h U xenocara/dist/Mesa/src/mesa/main/eval.c U xenocara/dist/Mesa/src/mesa/main/eval.h U xenocara/dist/Mesa/src/mesa/main/execmem.c U xenocara/dist/Mesa/src/mesa/main/extensions.c U xenocara/dist/Mesa/src/mesa/main/extensions.h U xenocara/dist/Mesa/src/mesa/main/fbobject.c U xenocara/dist/Mesa/src/mesa/main/fbobject.h U xenocara/dist/Mesa/src/mesa/main/feedback.c U xenocara/dist/Mesa/src/mesa/main/feedback.h U xenocara/dist/Mesa/src/mesa/main/fog.c U xenocara/dist/Mesa/src/mesa/main/ff_fragment_shader.cpp U xenocara/dist/Mesa/src/mesa/main/ffvertex_prog.c U xenocara/dist/Mesa/src/mesa/main/ffvertex_prog.h U xenocara/dist/Mesa/src/mesa/main/fog.h U xenocara/dist/Mesa/src/mesa/main/format_pack.c U xenocara/dist/Mesa/src/mesa/main/format_pack.h U xenocara/dist/Mesa/src/mesa/main/format_unpack.c U xenocara/dist/Mesa/src/mesa/main/format_unpack.h U xenocara/dist/Mesa/src/mesa/main/formatquery.c U xenocara/dist/Mesa/src/mesa/main/formatquery.h U xenocara/dist/Mesa/src/mesa/main/formats.c U xenocara/dist/Mesa/src/mesa/main/formats.h U xenocara/dist/Mesa/src/mesa/main/framebuffer.c U xenocara/dist/Mesa/src/mesa/main/framebuffer.h U xenocara/dist/Mesa/src/mesa/main/genmipmap.c U xenocara/dist/Mesa/src/mesa/main/genmipmap.h U xenocara/dist/Mesa/src/mesa/main/get.c U xenocara/dist/Mesa/src/mesa/main/get.h U xenocara/dist/Mesa/src/mesa/main/get_hash_generator.py U xenocara/dist/Mesa/src/mesa/main/get_hash_params.py U xenocara/dist/Mesa/src/mesa/main/getstring.c U xenocara/dist/Mesa/src/mesa/main/glformats.c U xenocara/dist/Mesa/src/mesa/main/glformats.h U xenocara/dist/Mesa/src/mesa/main/glheader.h U xenocara/dist/Mesa/src/mesa/main/hash.c U xenocara/dist/Mesa/src/mesa/main/hash.h U xenocara/dist/Mesa/src/mesa/main/hash_table.c U xenocara/dist/Mesa/src/mesa/main/hash_table.h U xenocara/dist/Mesa/src/mesa/main/hint.c U xenocara/dist/Mesa/src/mesa/main/hint.h U xenocara/dist/Mesa/src/mesa/main/histogram.c U xenocara/dist/Mesa/src/mesa/main/histogram.h U xenocara/dist/Mesa/src/mesa/main/image.c U xenocara/dist/Mesa/src/mesa/main/image.h U xenocara/dist/Mesa/src/mesa/main/imports.c U xenocara/dist/Mesa/src/mesa/main/imports.h U xenocara/dist/Mesa/src/mesa/main/light.c U xenocara/dist/Mesa/src/mesa/main/light.h U xenocara/dist/Mesa/src/mesa/main/lines.c U xenocara/dist/Mesa/src/mesa/main/lines.h U xenocara/dist/Mesa/src/mesa/main/macros.h U xenocara/dist/Mesa/src/mesa/main/matrix.c U xenocara/dist/Mesa/src/mesa/main/matrix.h U xenocara/dist/Mesa/src/mesa/main/mipmap.c U xenocara/dist/Mesa/src/mesa/main/mipmap.h U xenocara/dist/Mesa/src/mesa/main/mm.c U xenocara/dist/Mesa/src/mesa/main/mm.h U xenocara/dist/Mesa/src/mesa/main/mtypes.h U xenocara/dist/Mesa/src/mesa/main/multisample.c U xenocara/dist/Mesa/src/mesa/main/multisample.h U xenocara/dist/Mesa/src/mesa/main/objectlabel.c U xenocara/dist/Mesa/src/mesa/main/objectlabel.h U xenocara/dist/Mesa/src/mesa/main/pack.c U xenocara/dist/Mesa/src/mesa/main/pack.h U xenocara/dist/Mesa/src/mesa/main/pack_tmp.h U xenocara/dist/Mesa/src/mesa/main/pbo.c U xenocara/dist/Mesa/src/mesa/main/pbo.h U xenocara/dist/Mesa/src/mesa/main/performance_monitor.c U xenocara/dist/Mesa/src/mesa/main/performance_monitor.h U xenocara/dist/Mesa/src/mesa/main/pipelineobj.c U xenocara/dist/Mesa/src/mesa/main/pipelineobj.h U xenocara/dist/Mesa/src/mesa/main/pixel.c U xenocara/dist/Mesa/src/mesa/main/pixel.h U xenocara/dist/Mesa/src/mesa/main/pixelstore.c U xenocara/dist/Mesa/src/mesa/main/pixelstore.h U xenocara/dist/Mesa/src/mesa/main/pixeltransfer.c U xenocara/dist/Mesa/src/mesa/main/pixeltransfer.h U xenocara/dist/Mesa/src/mesa/main/points.c U xenocara/dist/Mesa/src/mesa/main/points.h U xenocara/dist/Mesa/src/mesa/main/polygon.c U xenocara/dist/Mesa/src/mesa/main/polygon.h U xenocara/dist/Mesa/src/mesa/main/querymatrix.c U xenocara/dist/Mesa/src/mesa/main/querymatrix.h U xenocara/dist/Mesa/src/mesa/main/queryobj.c U xenocara/dist/Mesa/src/mesa/main/queryobj.h U xenocara/dist/Mesa/src/mesa/main/rastpos.c U xenocara/dist/Mesa/src/mesa/main/rastpos.h U xenocara/dist/Mesa/src/mesa/main/readpix.c U xenocara/dist/Mesa/src/mesa/main/readpix.h U xenocara/dist/Mesa/src/mesa/main/remap.c U xenocara/dist/Mesa/src/mesa/main/remap.h U xenocara/dist/Mesa/src/mesa/main/renderbuffer.c U xenocara/dist/Mesa/src/mesa/main/renderbuffer.h U xenocara/dist/Mesa/src/mesa/main/samplerobj.c U xenocara/dist/Mesa/src/mesa/main/samplerobj.h U xenocara/dist/Mesa/src/mesa/main/scissor.c U xenocara/dist/Mesa/src/mesa/main/scissor.h U xenocara/dist/Mesa/src/mesa/main/set.c U xenocara/dist/Mesa/src/mesa/main/set.h U xenocara/dist/Mesa/src/mesa/main/shader_query.cpp U xenocara/dist/Mesa/src/mesa/main/shaderapi.c U xenocara/dist/Mesa/src/mesa/main/shaderapi.h U xenocara/dist/Mesa/src/mesa/main/shaderimage.c U xenocara/dist/Mesa/src/mesa/main/shaderimage.h U xenocara/dist/Mesa/src/mesa/main/shaderobj.c U xenocara/dist/Mesa/src/mesa/main/shaderobj.h C xenocara/dist/Mesa/src/mesa/main/shared.c U xenocara/dist/Mesa/src/mesa/main/shared.h U xenocara/dist/Mesa/src/mesa/main/simple_list.h U xenocara/dist/Mesa/src/mesa/main/state.c U xenocara/dist/Mesa/src/mesa/main/state.h U xenocara/dist/Mesa/src/mesa/main/stencil.c U xenocara/dist/Mesa/src/mesa/main/stencil.h U xenocara/dist/Mesa/src/mesa/main/streaming-load-memcpy.c U xenocara/dist/Mesa/src/mesa/main/streaming-load-memcpy.h U xenocara/dist/Mesa/src/mesa/main/syncobj.c U xenocara/dist/Mesa/src/mesa/main/syncobj.h U xenocara/dist/Mesa/src/mesa/main/texcompress.c U xenocara/dist/Mesa/src/mesa/main/texcompress.h U xenocara/dist/Mesa/src/mesa/main/texcompress_cpal.c U xenocara/dist/Mesa/src/mesa/main/texcompress_cpal.h U xenocara/dist/Mesa/src/mesa/main/texcompress_etc.c U xenocara/dist/Mesa/src/mesa/main/texcompress_etc.h U xenocara/dist/Mesa/src/mesa/main/texcompress_etc_tmp.h U xenocara/dist/Mesa/src/mesa/main/texcompress_fxt1.c U xenocara/dist/Mesa/src/mesa/main/texcompress_fxt1.h U xenocara/dist/Mesa/src/mesa/main/texenv.c U xenocara/dist/Mesa/src/mesa/main/texcompress_rgtc.c U xenocara/dist/Mesa/src/mesa/main/texcompress_rgtc.h U xenocara/dist/Mesa/src/mesa/main/texcompress_rgtc_tmp.h U xenocara/dist/Mesa/src/mesa/main/texcompress_s3tc.c U xenocara/dist/Mesa/src/mesa/main/texcompress_s3tc.h U xenocara/dist/Mesa/src/mesa/main/texenv.h U xenocara/dist/Mesa/src/mesa/main/texenvprogram.h U xenocara/dist/Mesa/src/mesa/main/texformat.c U xenocara/dist/Mesa/src/mesa/main/texformat.h U xenocara/dist/Mesa/src/mesa/main/texgen.c U xenocara/dist/Mesa/src/mesa/main/texgen.h U xenocara/dist/Mesa/src/mesa/main/texgetimage.c U xenocara/dist/Mesa/src/mesa/main/texgetimage.h C xenocara/dist/Mesa/src/mesa/main/teximage.c C xenocara/dist/Mesa/src/mesa/main/teximage.h U xenocara/dist/Mesa/src/mesa/main/texobj.c U xenocara/dist/Mesa/src/mesa/main/texobj.h C xenocara/dist/Mesa/src/mesa/main/texparam.c U xenocara/dist/Mesa/src/mesa/main/texparam.h U xenocara/dist/Mesa/src/mesa/main/texstate.c U xenocara/dist/Mesa/src/mesa/main/texstate.h U xenocara/dist/Mesa/src/mesa/main/texstorage.c U xenocara/dist/Mesa/src/mesa/main/texstorage.h C xenocara/dist/Mesa/src/mesa/main/texstore.c U xenocara/dist/Mesa/src/mesa/main/texstore.h U xenocara/dist/Mesa/src/mesa/main/texturebarrier.c U xenocara/dist/Mesa/src/mesa/main/texturebarrier.h U xenocara/dist/Mesa/src/mesa/main/textureview.c U xenocara/dist/Mesa/src/mesa/main/textureview.h U xenocara/dist/Mesa/src/mesa/main/transformfeedback.c U xenocara/dist/Mesa/src/mesa/main/transformfeedback.h U xenocara/dist/Mesa/src/mesa/main/uniform_query.cpp U xenocara/dist/Mesa/src/mesa/main/uniforms.c U xenocara/dist/Mesa/src/mesa/main/uniforms.h U xenocara/dist/Mesa/src/mesa/main/varray.c U xenocara/dist/Mesa/src/mesa/main/varray.h U xenocara/dist/Mesa/src/mesa/main/vdpau.c U xenocara/dist/Mesa/src/mesa/main/vdpau.h U xenocara/dist/Mesa/src/mesa/main/version.c U xenocara/dist/Mesa/src/mesa/main/version.h U xenocara/dist/Mesa/src/mesa/main/viewport.c U xenocara/dist/Mesa/src/mesa/main/viewport.h U xenocara/dist/Mesa/src/mesa/main/vtxfmt.c U xenocara/dist/Mesa/src/mesa/main/vtxfmt.h U xenocara/dist/Mesa/src/mesa/main/tests/Makefile.in U xenocara/dist/Mesa/src/mesa/main/tests/Makefile.am U xenocara/dist/Mesa/src/mesa/main/tests/dispatch_sanity.cpp U xenocara/dist/Mesa/src/mesa/main/tests/enum_strings.cpp U xenocara/dist/Mesa/src/mesa/main/tests/program_state_string.cpp U xenocara/dist/Mesa/src/mesa/main/tests/stubs.cpp U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/Makefile.in U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/Makefile.am U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/collision.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/delete_and_lookup.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/delete_management.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/destroy_callback.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/insert_and_lookup.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/insert_many.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/null_destroy.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/random_entry.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/remove_null.c U xenocara/dist/Mesa/src/mesa/main/tests/hash_table/replacement.c U xenocara/dist/Mesa/src/mesa/math/m_clip_tmp.h U xenocara/dist/Mesa/src/mesa/math/m_copy_tmp.h U xenocara/dist/Mesa/src/mesa/math/m_debug.h U xenocara/dist/Mesa/src/mesa/math/m_debug_clip.c U xenocara/dist/Mesa/src/mesa/math/m_debug_norm.c U xenocara/dist/Mesa/src/mesa/math/m_debug_util.h U xenocara/dist/Mesa/src/mesa/math/m_debug_xform.c U xenocara/dist/Mesa/src/mesa/math/m_dotprod_tmp.h U xenocara/dist/Mesa/src/mesa/math/m_eval.c U xenocara/dist/Mesa/src/mesa/math/m_eval.h U xenocara/dist/Mesa/src/mesa/math/m_matrix.c U xenocara/dist/Mesa/src/mesa/math/m_matrix.h U xenocara/dist/Mesa/src/mesa/math/m_norm_tmp.h U xenocara/dist/Mesa/src/mesa/math/m_trans_tmp.h U xenocara/dist/Mesa/src/mesa/math/m_translate.c U xenocara/dist/Mesa/src/mesa/math/m_translate.h U xenocara/dist/Mesa/src/mesa/math/m_vector.c U xenocara/dist/Mesa/src/mesa/math/m_vector.h U xenocara/dist/Mesa/src/mesa/math/m_xform.c U xenocara/dist/Mesa/src/mesa/math/m_xform.h U xenocara/dist/Mesa/src/mesa/math/m_xform_tmp.h U xenocara/dist/Mesa/src/mesa/program/Android.mk U xenocara/dist/Mesa/src/mesa/program/arbprogparse.c U xenocara/dist/Mesa/src/mesa/program/arbprogparse.h U xenocara/dist/Mesa/src/mesa/program/hash_table.h U xenocara/dist/Mesa/src/mesa/program/ir_to_mesa.cpp U xenocara/dist/Mesa/src/mesa/program/ir_to_mesa.h U xenocara/dist/Mesa/src/mesa/program/prog_cache.c U xenocara/dist/Mesa/src/mesa/program/prog_cache.h U xenocara/dist/Mesa/src/mesa/program/prog_execute.c U xenocara/dist/Mesa/src/mesa/program/prog_execute.h U xenocara/dist/Mesa/src/mesa/program/prog_hash_table.c U xenocara/dist/Mesa/src/mesa/program/prog_instruction.c U xenocara/dist/Mesa/src/mesa/program/prog_instruction.h U xenocara/dist/Mesa/src/mesa/program/prog_noise.c U xenocara/dist/Mesa/src/mesa/program/prog_noise.h U xenocara/dist/Mesa/src/mesa/program/prog_opt_constant_fold.c U xenocara/dist/Mesa/src/mesa/program/prog_optimize.c U xenocara/dist/Mesa/src/mesa/program/prog_optimize.h U xenocara/dist/Mesa/src/mesa/program/prog_print.c U xenocara/dist/Mesa/src/mesa/program/prog_parameter.c U xenocara/dist/Mesa/src/mesa/program/prog_parameter.h U xenocara/dist/Mesa/src/mesa/program/prog_parameter_layout.c U xenocara/dist/Mesa/src/mesa/program/prog_parameter_layout.h U xenocara/dist/Mesa/src/mesa/program/prog_print.h U xenocara/dist/Mesa/src/mesa/program/prog_statevars.c U xenocara/dist/Mesa/src/mesa/program/prog_statevars.h U xenocara/dist/Mesa/src/mesa/program/program.c U xenocara/dist/Mesa/src/mesa/program/program.h U xenocara/dist/Mesa/src/mesa/program/program_lexer.l U xenocara/dist/Mesa/src/mesa/program/program_parse.y U xenocara/dist/Mesa/src/mesa/program/program_parse_extra.c U xenocara/dist/Mesa/src/mesa/program/program_parser.h U xenocara/dist/Mesa/src/mesa/program/programopt.c U xenocara/dist/Mesa/src/mesa/program/programopt.h U xenocara/dist/Mesa/src/mesa/program/register_allocate.c U xenocara/dist/Mesa/src/mesa/program/register_allocate.h U xenocara/dist/Mesa/src/mesa/program/sampler.cpp U xenocara/dist/Mesa/src/mesa/program/sampler.h U xenocara/dist/Mesa/src/mesa/program/symbol_table.c U xenocara/dist/Mesa/src/mesa/program/string_to_uint_map.cpp U xenocara/dist/Mesa/src/mesa/program/symbol_table.h U xenocara/dist/Mesa/src/mesa/sparc/norm.S U xenocara/dist/Mesa/src/mesa/sparc/sparc.c U xenocara/dist/Mesa/src/mesa/sparc/sparc.h U xenocara/dist/Mesa/src/mesa/sparc/sparc_clip.S U xenocara/dist/Mesa/src/mesa/sparc/sparc_matrix.h U xenocara/dist/Mesa/src/mesa/sparc/xform.S U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_array.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_blend.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_clip.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_constbuf.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_constbuf.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_depth.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_framebuffer.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_msaa.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_pixeltransfer.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_rasterizer.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_sampler.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_scissor.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_shader.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_shader.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_stipple.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cache.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_texture.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_atom_viewport.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_bitmap.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_bitmap.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_blit.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_blit.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_bufferobjects.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_bufferobjects.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_clear.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_clear.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_condrender.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_condrender.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_drawpixels.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_drawpixels.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_drawtex.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_drawtex.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_eglimage.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_eglimage.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_fbo.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_fbo.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_feedback.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_feedback.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_flush.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_flush.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_msaa.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_msaa.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_program.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_program.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_queryobj.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_queryobj.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_rasterpos.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_rasterpos.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_readpixels.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_readpixels.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_strings.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_strings.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_syncobj.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_syncobj.h C xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_texture.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_texture.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_texturebarrier.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_texturebarrier.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_viewport.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_viewport.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_xformfb.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_cb_xformfb.h C xenocara/dist/Mesa/src/mesa/state_tracker/st_context.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_context.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_debug.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_debug.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_draw.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_draw.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_draw_feedback.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_extensions.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_extensions.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_format.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_format.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_gen_mipmap.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_gen_mipmap.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_gl_api.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_glsl_to_tgsi.cpp U xenocara/dist/Mesa/src/mesa/state_tracker/st_glsl_to_tgsi.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_manager.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_manager.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_mesa_to_tgsi.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_mesa_to_tgsi.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_program.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_program.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_texture.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_texture.h U xenocara/dist/Mesa/src/mesa/state_tracker/st_vdpau.c U xenocara/dist/Mesa/src/mesa/state_tracker/st_vdpau.h U xenocara/dist/Mesa/src/mesa/swrast/NOTES U xenocara/dist/Mesa/src/mesa/swrast/s_aaline.c U xenocara/dist/Mesa/src/mesa/swrast/s_aaline.h U xenocara/dist/Mesa/src/mesa/swrast/s_aalinetemp.h U xenocara/dist/Mesa/src/mesa/swrast/s_aatriangle.c U xenocara/dist/Mesa/src/mesa/swrast/s_aatriangle.h U xenocara/dist/Mesa/src/mesa/swrast/s_aatritemp.h U xenocara/dist/Mesa/src/mesa/swrast/s_alpha.c U xenocara/dist/Mesa/src/mesa/swrast/s_alpha.h U xenocara/dist/Mesa/src/mesa/swrast/s_atifragshader.c U xenocara/dist/Mesa/src/mesa/swrast/s_atifragshader.h U xenocara/dist/Mesa/src/mesa/swrast/s_bitmap.c U xenocara/dist/Mesa/src/mesa/swrast/s_blend.c U xenocara/dist/Mesa/src/mesa/swrast/s_blend.h U xenocara/dist/Mesa/src/mesa/swrast/s_blit.c U xenocara/dist/Mesa/src/mesa/swrast/s_chan.h U xenocara/dist/Mesa/src/mesa/swrast/s_clear.c U xenocara/dist/Mesa/src/mesa/swrast/s_context.c U xenocara/dist/Mesa/src/mesa/swrast/s_context.h U xenocara/dist/Mesa/src/mesa/swrast/s_copypix.c U xenocara/dist/Mesa/src/mesa/swrast/s_depth.c U xenocara/dist/Mesa/src/mesa/swrast/s_depth.h U xenocara/dist/Mesa/src/mesa/swrast/s_drawpix.c U xenocara/dist/Mesa/src/mesa/swrast/s_feedback.c U xenocara/dist/Mesa/src/mesa/swrast/s_feedback.h U xenocara/dist/Mesa/src/mesa/swrast/s_fog.c U xenocara/dist/Mesa/src/mesa/swrast/s_fog.h U xenocara/dist/Mesa/src/mesa/swrast/s_fragprog.c U xenocara/dist/Mesa/src/mesa/swrast/s_fragprog.h U xenocara/dist/Mesa/src/mesa/swrast/s_lines.c U xenocara/dist/Mesa/src/mesa/swrast/s_lines.h U xenocara/dist/Mesa/src/mesa/swrast/s_linetemp.h U xenocara/dist/Mesa/src/mesa/swrast/s_logic.c U xenocara/dist/Mesa/src/mesa/swrast/s_logic.h U xenocara/dist/Mesa/src/mesa/swrast/s_masking.c U xenocara/dist/Mesa/src/mesa/swrast/s_masking.h U xenocara/dist/Mesa/src/mesa/swrast/s_points.c U xenocara/dist/Mesa/src/mesa/swrast/s_points.h U xenocara/dist/Mesa/src/mesa/swrast/s_renderbuffer.c U xenocara/dist/Mesa/src/mesa/swrast/s_renderbuffer.h U xenocara/dist/Mesa/src/mesa/swrast/s_span.c U xenocara/dist/Mesa/src/mesa/swrast/s_span.h U xenocara/dist/Mesa/src/mesa/swrast/s_stencil.c U xenocara/dist/Mesa/src/mesa/swrast/s_stencil.h U xenocara/dist/Mesa/src/mesa/swrast/s_texcombine.c U xenocara/dist/Mesa/src/mesa/swrast/s_texture.c U xenocara/dist/Mesa/src/mesa/swrast/s_texcombine.h U xenocara/dist/Mesa/src/mesa/swrast/s_texfetch.c U xenocara/dist/Mesa/src/mesa/swrast/s_texfetch.h U xenocara/dist/Mesa/src/mesa/swrast/s_texfetch_tmp.h U xenocara/dist/Mesa/src/mesa/swrast/s_texfilter.c U xenocara/dist/Mesa/src/mesa/swrast/s_texfilter.h U xenocara/dist/Mesa/src/mesa/swrast/s_texrender.c U xenocara/dist/Mesa/src/mesa/swrast/s_triangle.c U xenocara/dist/Mesa/src/mesa/swrast/s_triangle.h U xenocara/dist/Mesa/src/mesa/swrast/s_tritemp.h U xenocara/dist/Mesa/src/mesa/swrast/s_zoom.c U xenocara/dist/Mesa/src/mesa/swrast/s_zoom.h U xenocara/dist/Mesa/src/mesa/swrast/swrast.h U xenocara/dist/Mesa/src/mesa/swrast_setup/NOTES U xenocara/dist/Mesa/src/mesa/swrast_setup/ss_context.c U xenocara/dist/Mesa/src/mesa/swrast_setup/ss_context.h U xenocara/dist/Mesa/src/mesa/swrast_setup/ss_triangle.c U xenocara/dist/Mesa/src/mesa/swrast_setup/ss_triangle.h U xenocara/dist/Mesa/src/mesa/swrast_setup/ss_tritmp.h U xenocara/dist/Mesa/src/mesa/swrast_setup/ss_vb.h U xenocara/dist/Mesa/src/mesa/swrast_setup/swrast_setup.h U xenocara/dist/Mesa/src/mesa/tnl/NOTES U xenocara/dist/Mesa/src/mesa/tnl/t_context.c U xenocara/dist/Mesa/src/mesa/tnl/t_context.h U xenocara/dist/Mesa/src/mesa/tnl/t_draw.c U xenocara/dist/Mesa/src/mesa/tnl/t_pipeline.c U xenocara/dist/Mesa/src/mesa/tnl/t_pipeline.h U xenocara/dist/Mesa/src/mesa/tnl/t_rasterpos.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_cliptmp.h U xenocara/dist/Mesa/src/mesa/tnl/t_vb_fog.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_light.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_lighttmp.h U xenocara/dist/Mesa/src/mesa/tnl/t_vb_normals.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_points.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_program.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_render.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_rendertmp.h U xenocara/dist/Mesa/src/mesa/tnl/t_vb_texgen.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_texmat.c U xenocara/dist/Mesa/src/mesa/tnl/t_vb_vertex.c U xenocara/dist/Mesa/src/mesa/tnl/t_vertex.c U xenocara/dist/Mesa/src/mesa/tnl/t_vertex.h U xenocara/dist/Mesa/src/mesa/tnl/t_vertex_generic.c U xenocara/dist/Mesa/src/mesa/tnl/t_vertex_sse.c U xenocara/dist/Mesa/src/mesa/tnl/t_vp_build.c U xenocara/dist/Mesa/src/mesa/tnl/t_vp_build.h U xenocara/dist/Mesa/src/mesa/tnl/tnl.h U xenocara/dist/Mesa/src/mesa/tnl_dd/t_dd_dmatmp.h U xenocara/dist/Mesa/src/mesa/tnl_dd/t_dd_dmatmp2.h U xenocara/dist/Mesa/src/mesa/tnl_dd/t_dd_triemit.h U xenocara/dist/Mesa/src/mesa/tnl_dd/t_dd_tritmp.h U xenocara/dist/Mesa/src/mesa/tnl_dd/t_dd_unfilled.h U xenocara/dist/Mesa/src/mesa/tnl_dd/t_dd_vb.c U xenocara/dist/Mesa/src/mesa/tnl_dd/t_dd_vertex.h U xenocara/dist/Mesa/src/mesa/vbo/vbo.h U xenocara/dist/Mesa/src/mesa/vbo/vbo_attrib.h U xenocara/dist/Mesa/src/mesa/vbo/vbo_attrib_tmp.h U xenocara/dist/Mesa/src/mesa/vbo/vbo_context.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_context.h U xenocara/dist/Mesa/src/mesa/vbo/vbo_exec.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_exec.h U xenocara/dist/Mesa/src/mesa/vbo/vbo_exec_api.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_exec_array.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_exec_draw.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_exec_eval.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_noop.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_noop.h U xenocara/dist/Mesa/src/mesa/vbo/vbo_primitive_restart.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_rebase.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_save.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_save.h U xenocara/dist/Mesa/src/mesa/vbo/vbo_save_api.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_save_draw.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_save_loopback.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_split.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_split.h U xenocara/dist/Mesa/src/mesa/vbo/vbo_split_copy.c U xenocara/dist/Mesa/src/mesa/vbo/vbo_split_inplace.c U xenocara/dist/Mesa/src/mesa/x86-64/calling_convention.txt U xenocara/dist/Mesa/src/mesa/x86-64/x86-64.c U xenocara/dist/Mesa/src/mesa/x86-64/x86-64.h U xenocara/dist/Mesa/src/mesa/x86-64/xform4.S U xenocara/dist/Mesa/src/mesa/x86/3dnow.c U xenocara/dist/Mesa/src/mesa/x86/3dnow.h U xenocara/dist/Mesa/src/mesa/x86/3dnow_normal.S U xenocara/dist/Mesa/src/mesa/x86/3dnow_xform1.S U xenocara/dist/Mesa/src/mesa/x86/3dnow_xform2.S U xenocara/dist/Mesa/src/mesa/x86/3dnow_xform3.S U xenocara/dist/Mesa/src/mesa/x86/3dnow_xform4.S U xenocara/dist/Mesa/src/mesa/x86/assyntax.h U xenocara/dist/Mesa/src/mesa/x86/clip_args.h U xenocara/dist/Mesa/src/mesa/x86/common_x86.c U xenocara/dist/Mesa/src/mesa/x86/common_x86_asm.S U xenocara/dist/Mesa/src/mesa/x86/common_x86_asm.h U xenocara/dist/Mesa/src/mesa/x86/common_x86_features.h U xenocara/dist/Mesa/src/mesa/x86/gen_matypes.c U xenocara/dist/Mesa/src/mesa/x86/mmx.h U xenocara/dist/Mesa/src/mesa/x86/mmx_blend.S U xenocara/dist/Mesa/src/mesa/x86/mmx_blendtmp.h U xenocara/dist/Mesa/src/mesa/x86/norm_args.h U xenocara/dist/Mesa/src/mesa/x86/read_rgba_span_x86.S U xenocara/dist/Mesa/src/mesa/x86/sse.c U xenocara/dist/Mesa/src/mesa/x86/sse.h U xenocara/dist/Mesa/src/mesa/x86/sse_normal.S U xenocara/dist/Mesa/src/mesa/x86/sse_xform1.S U xenocara/dist/Mesa/src/mesa/x86/sse_xform2.S U xenocara/dist/Mesa/src/mesa/x86/sse_xform3.S U xenocara/dist/Mesa/src/mesa/x86/sse_xform4.S U xenocara/dist/Mesa/src/mesa/x86/x86_cliptest.S U xenocara/dist/Mesa/src/mesa/x86/x86_xform.c U xenocara/dist/Mesa/src/mesa/x86/x86_xform.h U xenocara/dist/Mesa/src/mesa/x86/x86_xform2.S U xenocara/dist/Mesa/src/mesa/x86/x86_xform3.S U xenocara/dist/Mesa/src/mesa/x86/x86_xform4.S U xenocara/dist/Mesa/src/mesa/x86/xform_args.h U xenocara/dist/Mesa/src/mesa/x86/rtasm/x86sse.c U xenocara/dist/Mesa/src/mesa/x86/rtasm/x86sse.h U xenocara/dist/Mesa/src/getopt/SConscript U xenocara/dist/Mesa/src/getopt/getopt.h U xenocara/dist/Mesa/src/getopt/getopt_long.c U xenocara/dist/Mesa/src/hgl/GLDispatcher.cpp U xenocara/dist/Mesa/src/hgl/GLDispatcher.h U xenocara/dist/Mesa/src/hgl/GLRenderer.cpp U xenocara/dist/Mesa/src/hgl/GLRendererRoster.cpp U xenocara/dist/Mesa/src/hgl/GLRendererRoster.h U xenocara/dist/Mesa/src/hgl/GLView.cpp U xenocara/dist/Mesa/src/hgl/SConscript U xenocara/dist/Mesa/docs/ARB_color_buffer_float.txt U xenocara/dist/Mesa/docs/COPYING U xenocara/dist/Mesa/docs/GL3.txt U xenocara/dist/Mesa/docs/README.UVD U xenocara/dist/Mesa/docs/README.VCE U xenocara/dist/Mesa/docs/README.WIN32 U xenocara/dist/Mesa/docs/VERSIONS U xenocara/dist/Mesa/docs/application-issues.html U xenocara/dist/Mesa/docs/autoconf.html U xenocara/dist/Mesa/docs/bugs.html U xenocara/dist/Mesa/docs/conform.html U xenocara/dist/Mesa/docs/contents.html U xenocara/dist/Mesa/docs/debugging.html U xenocara/dist/Mesa/docs/developers.html U xenocara/dist/Mesa/docs/devinfo.html U xenocara/dist/Mesa/docs/dispatch.html U xenocara/dist/Mesa/docs/download.html U xenocara/dist/Mesa/docs/egl.html U xenocara/dist/Mesa/docs/envvars.html U xenocara/dist/Mesa/docs/extensions.html U xenocara/dist/Mesa/docs/faq.html U xenocara/dist/Mesa/docs/gears.png U xenocara/dist/Mesa/docs/helpwanted.html U xenocara/dist/Mesa/docs/index.html U xenocara/dist/Mesa/docs/install.html U xenocara/dist/Mesa/docs/intro.html U xenocara/dist/Mesa/docs/libGL.txt U xenocara/dist/Mesa/docs/license.html U xenocara/dist/Mesa/docs/lists.html U xenocara/dist/Mesa/docs/llvmpipe.html U xenocara/dist/Mesa/docs/mangling.html U xenocara/dist/Mesa/docs/mesa.css U xenocara/dist/Mesa/docs/opengles.html U xenocara/dist/Mesa/docs/openvg.html U xenocara/dist/Mesa/docs/osmesa.html U xenocara/dist/Mesa/docs/patents.txt U xenocara/dist/Mesa/docs/perf.html U xenocara/dist/Mesa/docs/postprocess.html U xenocara/dist/Mesa/docs/precompiled.html U xenocara/dist/Mesa/docs/relnotes.html U xenocara/dist/Mesa/docs/repository.html U xenocara/dist/Mesa/docs/shading.html U xenocara/dist/Mesa/docs/thanks.html U xenocara/dist/Mesa/docs/sourcedocs.html U xenocara/dist/Mesa/docs/sourcetree.html U xenocara/dist/Mesa/docs/systems.html U xenocara/dist/Mesa/docs/utilities.html U xenocara/dist/Mesa/docs/versions.html U xenocara/dist/Mesa/docs/viewperf.html U xenocara/dist/Mesa/docs/vmware-guest.html U xenocara/dist/Mesa/docs/webmaster.html U xenocara/dist/Mesa/docs/xlibdriver.html U xenocara/dist/Mesa/docs/relnotes/10.0.1.html U xenocara/dist/Mesa/docs/relnotes/10.0.2.html U xenocara/dist/Mesa/docs/relnotes/10.0.3.html U xenocara/dist/Mesa/docs/relnotes/10.0.4.html U xenocara/dist/Mesa/docs/relnotes/10.0.5.html U xenocara/dist/Mesa/docs/relnotes/10.0.html U xenocara/dist/Mesa/docs/relnotes/10.1.1.html U xenocara/dist/Mesa/docs/relnotes/10.1.html U xenocara/dist/Mesa/docs/relnotes/10.2.1.html U xenocara/dist/Mesa/docs/relnotes/10.2.2.html U xenocara/dist/Mesa/docs/relnotes/10.2.3.html N xenocara/dist/Mesa/docs/relnotes/10.2.4.html N xenocara/dist/Mesa/docs/relnotes/10.2.5.html N xenocara/dist/Mesa/docs/relnotes/10.2.6.html N xenocara/dist/Mesa/docs/relnotes/10.2.7.html U xenocara/dist/Mesa/docs/relnotes/10.2.html U xenocara/dist/Mesa/docs/relnotes/3.1 U xenocara/dist/Mesa/docs/relnotes/3.2 U xenocara/dist/Mesa/docs/relnotes/3.2.1 U xenocara/dist/Mesa/docs/relnotes/3.3 U xenocara/dist/Mesa/docs/relnotes/3.4 U xenocara/dist/Mesa/docs/relnotes/3.4.1 U xenocara/dist/Mesa/docs/relnotes/3.4.2 U xenocara/dist/Mesa/docs/relnotes/3.5 U xenocara/dist/Mesa/docs/relnotes/4.0 U xenocara/dist/Mesa/docs/relnotes/4.0.1 U xenocara/dist/Mesa/docs/relnotes/4.0.2 U xenocara/dist/Mesa/docs/relnotes/4.0.3 U xenocara/dist/Mesa/docs/relnotes/4.1 U xenocara/dist/Mesa/docs/relnotes/5.0 U xenocara/dist/Mesa/docs/relnotes/5.0.1 U xenocara/dist/Mesa/docs/relnotes/5.0.2 U xenocara/dist/Mesa/docs/relnotes/5.1 U xenocara/dist/Mesa/docs/relnotes/6.0 U xenocara/dist/Mesa/docs/relnotes/6.0.1 U xenocara/dist/Mesa/docs/relnotes/6.1 U xenocara/dist/Mesa/docs/relnotes/6.2 U xenocara/dist/Mesa/docs/relnotes/6.2.1 U xenocara/dist/Mesa/docs/relnotes/6.3 U xenocara/dist/Mesa/docs/relnotes/6.3.1 U xenocara/dist/Mesa/docs/relnotes/6.3.2 U xenocara/dist/Mesa/docs/relnotes/6.4 U xenocara/dist/Mesa/docs/relnotes/6.4.1.html U xenocara/dist/Mesa/docs/relnotes/6.4.2.html U xenocara/dist/Mesa/docs/relnotes/6.4.html U xenocara/dist/Mesa/docs/relnotes/6.5.1.html U xenocara/dist/Mesa/docs/relnotes/6.5.2.html U xenocara/dist/Mesa/docs/relnotes/6.5.3.html U xenocara/dist/Mesa/docs/relnotes/6.5.html U xenocara/dist/Mesa/docs/relnotes/7.0.1.html U xenocara/dist/Mesa/docs/relnotes/7.0.2.html U xenocara/dist/Mesa/docs/relnotes/7.0.3.html U xenocara/dist/Mesa/docs/relnotes/7.0.4.html U xenocara/dist/Mesa/docs/relnotes/7.0.html U xenocara/dist/Mesa/docs/relnotes/7.1.html U xenocara/dist/Mesa/docs/relnotes/7.10.1.html U xenocara/dist/Mesa/docs/relnotes/7.10.2.html U xenocara/dist/Mesa/docs/relnotes/7.10.3.html U xenocara/dist/Mesa/docs/relnotes/7.10.html U xenocara/dist/Mesa/docs/relnotes/7.11.1.html U xenocara/dist/Mesa/docs/relnotes/7.11.2.html U xenocara/dist/Mesa/docs/relnotes/7.11.html U xenocara/dist/Mesa/docs/relnotes/7.2.html U xenocara/dist/Mesa/docs/relnotes/7.3.html U xenocara/dist/Mesa/docs/relnotes/7.4.1.html U xenocara/dist/Mesa/docs/relnotes/7.4.2.html U xenocara/dist/Mesa/docs/relnotes/7.4.3.html U xenocara/dist/Mesa/docs/relnotes/7.4.4.html U xenocara/dist/Mesa/docs/relnotes/7.4.html U xenocara/dist/Mesa/docs/relnotes/7.5.1.html U xenocara/dist/Mesa/docs/relnotes/7.5.2.html U xenocara/dist/Mesa/docs/relnotes/7.5.html U xenocara/dist/Mesa/docs/relnotes/7.6.1.html U xenocara/dist/Mesa/docs/relnotes/7.6.html U xenocara/dist/Mesa/docs/relnotes/7.7.1.html U xenocara/dist/Mesa/docs/relnotes/7.7.html U xenocara/dist/Mesa/docs/relnotes/7.8.1.html U xenocara/dist/Mesa/docs/relnotes/7.8.2.html U xenocara/dist/Mesa/docs/relnotes/7.8.3.html U xenocara/dist/Mesa/docs/relnotes/7.8.html U xenocara/dist/Mesa/docs/relnotes/7.9.1.html U xenocara/dist/Mesa/docs/relnotes/7.9.2.html U xenocara/dist/Mesa/docs/relnotes/7.9.html U xenocara/dist/Mesa/docs/relnotes/8.0.1.html U xenocara/dist/Mesa/docs/relnotes/8.0.2.html U xenocara/dist/Mesa/docs/relnotes/8.0.3.html U xenocara/dist/Mesa/docs/relnotes/8.0.4.html U xenocara/dist/Mesa/docs/relnotes/8.0.5.html U xenocara/dist/Mesa/docs/relnotes/8.0.html U xenocara/dist/Mesa/docs/relnotes/9.0.1.html U xenocara/dist/Mesa/docs/relnotes/9.0.2.html U xenocara/dist/Mesa/docs/relnotes/9.0.3.html U xenocara/dist/Mesa/docs/relnotes/9.0.html U xenocara/dist/Mesa/docs/relnotes/9.1.1.html U xenocara/dist/Mesa/docs/relnotes/9.1.2.html U xenocara/dist/Mesa/docs/relnotes/9.1.3.html U xenocara/dist/Mesa/docs/relnotes/9.1.4.html U xenocara/dist/Mesa/docs/relnotes/9.1.5.html U xenocara/dist/Mesa/docs/relnotes/9.1.6.html U xenocara/dist/Mesa/docs/relnotes/9.1.7.html U xenocara/dist/Mesa/docs/relnotes/9.1.html U xenocara/dist/Mesa/docs/relnotes/9.2.1.html U xenocara/dist/Mesa/docs/relnotes/9.2.2.html U xenocara/dist/Mesa/docs/relnotes/9.2.3.html U xenocara/dist/Mesa/docs/relnotes/9.2.4.html U xenocara/dist/Mesa/docs/relnotes/9.2.5.html U xenocara/dist/Mesa/docs/relnotes/9.2.html U xenocara/dist/Mesa/docs/specs/EXT_shader_integer_mix.spec U xenocara/dist/Mesa/docs/specs/MESA_agp_offset.spec U xenocara/dist/Mesa/docs/specs/MESA_configless_context.spec U xenocara/dist/Mesa/docs/specs/MESA_copy_sub_buffer.spec U xenocara/dist/Mesa/docs/specs/MESA_drm_image.spec U xenocara/dist/Mesa/docs/specs/MESA_multithread_makecurrent.spec U xenocara/dist/Mesa/docs/specs/MESA_pack_invert.spec U xenocara/dist/Mesa/docs/specs/MESA_pixmap_colormap.spec U xenocara/dist/Mesa/docs/specs/MESA_query_renderer.spec U xenocara/dist/Mesa/docs/specs/MESA_release_buffers.spec U xenocara/dist/Mesa/docs/specs/MESA_set_3dfx_mode.spec U xenocara/dist/Mesa/docs/specs/MESA_shader_debug.spec U xenocara/dist/Mesa/docs/specs/MESA_swap_control.spec U xenocara/dist/Mesa/docs/specs/enums.txt U xenocara/dist/Mesa/docs/specs/MESA_swap_frame_usage.spec U xenocara/dist/Mesa/docs/specs/MESA_texture_array.spec U xenocara/dist/Mesa/docs/specs/MESA_texture_signed_rgba.spec U xenocara/dist/Mesa/docs/specs/MESA_window_pos.spec U xenocara/dist/Mesa/docs/specs/MESA_ycbcr_texture.spec U xenocara/dist/Mesa/docs/specs/WL_bind_wayland_display.spec U xenocara/dist/Mesa/docs/specs/WL_create_wayland_buffer_from_image.spec U xenocara/dist/Mesa/docs/specs/OLD/MESA_packed_depth_stencil.spec U xenocara/dist/Mesa/docs/specs/OLD/MESA_program_debug.spec U xenocara/dist/Mesa/docs/specs/OLD/MESA_resize_buffers.spec U xenocara/dist/Mesa/docs/specs/OLD/MESA_sprite_point.spec U xenocara/dist/Mesa/docs/specs/OLD/MESA_trace.spec U xenocara/dist/Mesa/doxygen/Makefile U xenocara/dist/Mesa/doxygen/README U xenocara/dist/Mesa/doxygen/common.doxy U xenocara/dist/Mesa/doxygen/core_subset.doxy U xenocara/dist/Mesa/doxygen/doxy.bat U xenocara/dist/Mesa/doxygen/gallium.doc U xenocara/dist/Mesa/doxygen/gallium.doxy U xenocara/dist/Mesa/doxygen/gbm.doxy U xenocara/dist/Mesa/doxygen/glapi.doxy U xenocara/dist/Mesa/doxygen/glsl.doxy U xenocara/dist/Mesa/doxygen/header.html U xenocara/dist/Mesa/doxygen/header_subset.html U xenocara/dist/Mesa/doxygen/i965.doxy U xenocara/dist/Mesa/doxygen/main.doxy U xenocara/dist/Mesa/doxygen/math.doxy U xenocara/dist/Mesa/doxygen/math_subset.doxy U xenocara/dist/Mesa/doxygen/radeon_subset.doxy U xenocara/dist/Mesa/doxygen/shader.doxy U xenocara/dist/Mesa/doxygen/swrast.doxy U xenocara/dist/Mesa/doxygen/swrast_setup.doxy U xenocara/dist/Mesa/doxygen/tnl.doxy U xenocara/dist/Mesa/doxygen/tnl_dd.doxy U xenocara/dist/Mesa/doxygen/vbo.doxy U xenocara/dist/Mesa/include/c99_compat.h U xenocara/dist/Mesa/include/CL/cl.h U xenocara/dist/Mesa/include/CL/cl.hpp U xenocara/dist/Mesa/include/CL/cl_d3d10.h U xenocara/dist/Mesa/include/CL/cl_d3d11.h U xenocara/dist/Mesa/include/CL/cl_dx9_media_sharing.h U xenocara/dist/Mesa/include/CL/cl_egl.h U xenocara/dist/Mesa/include/CL/cl_ext.h U xenocara/dist/Mesa/include/CL/cl_gl.h U xenocara/dist/Mesa/include/CL/cl_gl_ext.h U xenocara/dist/Mesa/include/CL/cl_platform.h U xenocara/dist/Mesa/include/CL/opencl.h U xenocara/dist/Mesa/include/EGL/egl.h U xenocara/dist/Mesa/include/EGL/eglext.h U xenocara/dist/Mesa/include/EGL/eglmesaext.h U xenocara/dist/Mesa/include/EGL/eglplatform.h U xenocara/dist/Mesa/include/GL/gl.h U xenocara/dist/Mesa/include/GL/gl_mangle.h U xenocara/dist/Mesa/include/GL/glext.h U xenocara/dist/Mesa/include/GL/glx.h U xenocara/dist/Mesa/include/GL/glx_mangle.h U xenocara/dist/Mesa/include/GL/glxext.h U xenocara/dist/Mesa/include/GL/osmesa.h U xenocara/dist/Mesa/include/GL/wglext.h U xenocara/dist/Mesa/include/GL/wmesa.h U xenocara/dist/Mesa/include/GL/internal/dri_interface.h U xenocara/dist/Mesa/include/GL/internal/sarea.h U xenocara/dist/Mesa/include/GLES/egl.h U xenocara/dist/Mesa/include/GLES/gl.h U xenocara/dist/Mesa/include/GLES/glext.h U xenocara/dist/Mesa/include/GLES/glplatform.h U xenocara/dist/Mesa/include/GLES2/gl2.h U xenocara/dist/Mesa/include/GLES2/gl2ext.h U xenocara/dist/Mesa/include/GLES2/gl2platform.h U xenocara/dist/Mesa/include/GLES3/gl3.h U xenocara/dist/Mesa/include/GLES3/gl31.h U xenocara/dist/Mesa/include/GLES3/gl3ext.h U xenocara/dist/Mesa/include/GLES3/gl3platform.h U xenocara/dist/Mesa/include/HaikuGL/GLRenderer.h U xenocara/dist/Mesa/include/HaikuGL/GLView.h U xenocara/dist/Mesa/include/HaikuGL/OpenGLKit.h U xenocara/dist/Mesa/include/HaikuGL/README U xenocara/dist/Mesa/include/KHR/khrplatform.h U xenocara/dist/Mesa/include/VG/openvg.h U xenocara/dist/Mesa/include/VG/vgext.h U xenocara/dist/Mesa/include/VG/vgplatform.h U xenocara/dist/Mesa/include/VG/vgu.h U xenocara/dist/Mesa/include/c11/threads.h U xenocara/dist/Mesa/include/c11/threads_posix.h U xenocara/dist/Mesa/include/c11/threads_win32.h U xenocara/dist/Mesa/include/c99/inttypes.h U xenocara/dist/Mesa/include/c99/stdbool.h U xenocara/dist/Mesa/include/c99/stdint.h U xenocara/dist/Mesa/include/pci_ids/i810_pci_ids.h U xenocara/dist/Mesa/include/pci_ids/i915_pci_ids.h U xenocara/dist/Mesa/include/pci_ids/i965_pci_ids.h U xenocara/dist/Mesa/include/pci_ids/r200_pci_ids.h U xenocara/dist/Mesa/include/pci_ids/r300_pci_ids.h U xenocara/dist/Mesa/include/pci_ids/r600_pci_ids.h U xenocara/dist/Mesa/include/pci_ids/radeon_pci_ids.h U xenocara/dist/Mesa/include/pci_ids/radeonsi_pci_ids.h U xenocara/dist/Mesa/include/pci_ids/vmwgfx_pci_ids.h U xenocara/dist/Mesa/m4/ax_check_compile_flag.m4 U xenocara/dist/Mesa/m4/ax_gcc_builtin.m4 U xenocara/dist/Mesa/m4/ax_prog_bison.m4 U xenocara/dist/Mesa/m4/ax_prog_flex.m4 U xenocara/dist/Mesa/m4/ax_pthread.m4 U xenocara/dist/Mesa/scons/crossmingw.py U xenocara/dist/Mesa/scons/custom.py U xenocara/dist/Mesa/scons/dxsdk.py U xenocara/dist/Mesa/scons/fixes.py U xenocara/dist/Mesa/scons/gallium.py U xenocara/dist/Mesa/scons/llvm.py U xenocara/dist/Mesa/scons/source_list.py U xenocara/dist/Mesa/scons/x11.py 55 conflicts created by this import. Use the following command to help the merge: cvs checkout -jmesa:yesterday -jmesa xenocara/dist/Mesa CVSROOT: /cvs Module name: xenocara Changes by: jsg@cvs.openbsd.org 2014/09/07 09:20:07 Modified files: dist/Mesa : configure.ac dist/Mesa/bin : config.guess config.sub dist/Mesa/src/egl/drivers/dri2: egl_dri2.c dist/Mesa/src/egl/main: eglcontext.c dist/Mesa/src/gallium/auxiliary/gallivm: lp_bld_debug.cpp lp_bld_misc.cpp lp_bld_sample.c dist/Mesa/src/gallium/auxiliary/util: u_blitter.c u_math.h u_prim.h u_transfer.c dist/Mesa/src/gallium/drivers/r300: r300_context.c dist/Mesa/src/gallium/drivers/r600: evergreen_state.c r600_asm.c r600_blit.c r600_shader.c r600_state.c dist/Mesa/src/gallium/state_trackers/wgl: stw_ext_pixelformat.c dist/Mesa/src/gallium/winsys/radeon/drm: radeon_drm_cs.c radeon_drm_cs.h radeon_drm_winsys.c radeon_drm_winsys.h radeon_winsys.h dist/Mesa/src/glsl: glsl_lexer.cpp dist/Mesa/src/glsl/glcpp: glcpp-lex.c dist/Mesa/src/mesa/drivers/common: meta.c dist/Mesa/src/mesa/drivers/dri/i915: intel_screen.c dist/Mesa/src/mesa/drivers/dri/i965: brw_clip_unfilled.c brw_defines.h brw_fs.cpp brw_fs.h brw_fs_visitor.cpp brw_wm.c brw_wm.h intel_mipmap_tree.c dist/Mesa/src/mesa/drivers/dri/nouveau: nouveau_bufferobj.c nouveau_state.c dist/Mesa/src/mesa/drivers/dri/r200: r200_context.c r200_state.c r200_state.h dist/Mesa/src/mesa/drivers/dri/radeon: radeon_common.c radeon_common_context.h radeon_context.c radeon_state.c radeon_state.h dist/Mesa/src/mesa/main: buffers.c context.c shared.c teximage.c teximage.h texparam.c texstore.c dist/Mesa/src/mesa/state_tracker: st_cb_texture.c st_context.c Removed files: dist/Mesa/src/mesa/program: lex.yy.c program_parse.tab.c program_parse.tab.h Log message: Merge Mesa 10.2.7 CVSROOT: /cvs Module name: xenocara Changes by: jsg@cvs.openbsd.org 2014/09/07 09:32:18 Modified files: lib/libEGL : Makefile lib/libGL : config.mk lib/libGL/gallium: Makefile.inc lib/libGL/generated/main: get_hash.h lib/libGLESv1_CM: Makefile lib/libGLESv2 : Makefile lib/libgbm : Makefile Log message: Mesa 10.2.7 CVSROOT: /cvs Module name: xenocara Changes by: jsg@cvs.openbsd.org 2014/09/07 09:34:12 Modified files: . : 3RDPARTY Log message: update CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/07 10:14:43 Modified files: devel/cil : Makefile Log message: no support for bytecode, therefore don't try building on powerpc for the time being. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/07 10:27:24 Modified files: infrastructure/mk: arch-defines.mk Log message: PowerPC native code is broken at the moment. Therefore build native code only for the time being. Hopefully this can be reverted soon. ok jca@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/07 11:27:20 Modified files: app/cwm : calmwm.h group.c Log message: Get rid of a redundant array of groups per screen; we already have a link to the group queue for each screen. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/07 11:38:38 Modified files: app/cwm : calmwm.h client.c screen.c xevents.c Log message: screen_fromroot -> screen_find CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/07 12:00:11 Modified files: misc/portroach : Makefile distinfo Log message: - update to portroach-1.1.1 * various sorting and display fixes in html pages CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/07 12:11:07 Modified files: audio/metronome: Makefile databases/mdbtools/snapshot: Makefile databases/ports-readmes-dancer: Makefile games/circuit : Makefile net/ytalk : Makefile sysutils/superscript: Makefile textproc/rxp : Makefile x11/xglobe : Makefile Log message: mirror distfiles CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/07 12:16:42 Modified files: sysutils/ruby-puppet/3: Makefile distinfo sysutils/ruby-puppet/3/patches: patch-lib_puppet_defaults_rb patch-lib_puppet_provider_service_openbsd_rb sysutils/ruby-puppet/3/pkg: PLIST Removed files: sysutils/ruby-puppet/3/patches: patch-lib_puppet_provider_package_openbsd_rb patch-lib_puppet_type_resources_rb Log message: - update to puppet-3.7.0 * https://docs.puppetlabs.com/puppet/3.7/reference/release_notes.html testing/ok sebastia@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/07 12:24:56 Modified files: net/telepathy/telepathy-gabble: Makefile Log message: sort CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/07 12:25:01 Modified files: net/telepathy : Makefile.inc net/telepathy/folks: Makefile net/telepathy/telepathy-qt: Makefile net/telepathy/telepathy-salut: Makefile Log message: set PORTROACH CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/07 12:49:13 Modified files: lang/tcl/8.6 : Makefile distinfo lang/tcl/8.6/patches: patch-unix_Makefile_in patch-unix_installManPage lang/tcl/8.6/pkg: PLIST Log message: Update to 8.6.2. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/07 12:49:32 Modified files: x11/tk/8.6 : Makefile distinfo x11/tk/8.6/patches: patch-unix_Makefile_in patch-unix_installManPage x11/tk/8.6/pkg : PLIST Log message: Update to 8.6.2. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/07 12:50:07 Modified files: devel/tclthread: Makefile distinfo devel/tclthread/pkg: PLIST Log message: Update to 2.7.1. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/07 12:50:32 Modified files: databases/tdbc : Makefile distinfo databases/tdbc/patches: patch-tclconfig_tcl_m4 databases/tdbc/pkg: PLIST Log message: Update to 1.0.1. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/07 12:50:50 Modified files: www/py-beautifulsoup: Makefile Log message: oops, fix typo, pointed out by frantisek holop CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/07 12:50:54 Modified files: databases/tdbc-sqlite3: Makefile distinfo databases/tdbc-sqlite3/pkg: PLIST Log message: Update to 1.0.1. CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/07 13:24:48 Modified files: editors/vim : Makefile distinfo editors/vim/pkg: PFRAG.no-no_x11-main PLIST-lang PLIST-main Log message: Update to 7.4.430. Changes: * build -lang subpackage only for gui flavors so we can include all documentation. * install OpenBSD syntax files to share/vim/vimfiles, which is version independent and in the runtimepath by default. This should be used as target for vim plugin ports as it is version independent. ok sthen@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/07 13:27:30 Modified files: app/cwm : calmwm.c client.c conf.c menu.c screen.c search.c xmalloc.c xutil.c Log message: more style nits CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/07 13:27:32 Removed files: www/py-jinja2/patches: patch-jinja2_bccache_py Log message: remove 0-byte file; pointed out by frantisek holop CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/09/07 13:41:51 Modified files: sys/dev/pci : Tag: OPENBSD_5_5 virtio.c virtiovar.h Log message: Fix hang with virtio event_idx feature backported from current virtio.c 1.6 / virtiovar.h 1.5: date: 2014/06/15 11:18:39; author: sf; commitid: 8b7wbadq7EgTO3mO; When using the RING_EVENT_IDX feature, we must first call publish_avail_idx() and then read VQ_AVAIL_EVENT(vq), or there is a race condition that may cause us to miss that the host needs to be notified. This resulted in an occasional hang of network in vio(4). CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/07 13:43:35 Modified files: sbin/restore : dirs.c extern.h tape.c Log message: Reuse xtrfile() to avoid duplication. Casting from long to int for a size_t argument is dumb. Calling warnx() right before err() is silly. ok millert@ CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/09/07 13:44:29 Modified files: sys/dev/pci : Tag: OPENBSD_5_4 if_vio.c Log message: Backport from current revision 1.15: date: 2014/01/19 20:49:02; author: bluhm; state: Exp; lines: +29 -8; If the system runs out ouf mbufs, the receive queue of the vio interface may get emtpy. The driver did not recover from that starvation as it does not get receive interrupts anymore. Fix this by adding a one second receive timeout in that case. OK sf@ CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/09/07 13:46:41 Modified files: sys/dev/pci : Tag: OPENBSD_5_4 virtio.c virtiovar.h Log message: Fix hang with virtio event_idx feature backported from current virtio.c 1.6 / virtiovar.h 1.5: date: 2014/06/15 11:18:39; author: sf; commitid: 8b7wbadq7EgTO3mO; When using the RING_EVENT_IDX feature, we must first call publish_avail_idx() and then read VQ_AVAIL_EVENT(vq), or there is a race condition that may cause us to miss that the host needs to be notified. This resulted in an occasional hang of network in vio(4). CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/07 14:06:07 Removed files: emulators/fuse/patches: patch-screenshot_c emulators/fuse-utils/patches: patch-configure devel/ocaml-batteries/patches: patch-src_batUnix_mliv Log message: remove more 0-byte files CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/09/07 14:08:09 Modified files: devel/p5-Sub-Name: Makefile distinfo Log message: update p5-Sub-Name to 0.12 CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/07 14:18:16 Modified files: lib/libc/sys : vfork.2 Log message: Document that 4.4BSD changed the semantics but that others have restored the original ones ok jmc@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/07 14:57:26 Modified files: app/cwm : calmwm.h group.c Log message: Add screen_ctx to group_ctx, and populate on init. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/07 16:19:33 Modified files: sys/arch/amd64/include: atomic.h Log message: Implement membar(9) API for amd64. ok dlg@, guenther@ CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/07 16:40:30 Modified files: usr.sbin/arp : arp.c usr.sbin/ndp : ndp.c Log message: Remove useless comment, snprintf and if/else. OK mpi@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/07 17:24:33 Modified files: usr.bin/mandoc : mandoc.h mdoc_validate.c read.c Log message: warn about AUTHORS sections without .An macros, inspired by mdoclint(1) CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/07 18:00:05 Modified files: sys/sys : pool.h sys/kern : subr_pool.c Log message: deprecate the use of the PR_PHINPAGE flag by replacing it with a test of pr_phoffset. ok doug@ guenther@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/07 18:05:22 Modified files: sys/sys : pool.h Log message: the PR_LOGGING flag is unused, so im cleaning it up CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/09/07 18:43:42 Modified files: usr.sbin/syslogd: privsep.c syslogd.8 syslogd.c syslogd.h Log message: Fix a syslogd regression when specifying all 20 additional log paths bluhm@ found and fixed this bug. This is a modified version of his patch which makes the intention a little clearer. ok bluhm@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/07 19:27:56 Modified files: bin/pax : cpio.1 pax.1 tar.1 bin/systrace : systrace.1 games/adventure: adventure.6 games/atc : atc.6 games/banner : banner.6 games/bs : bs.6 games/cribbage : cribbage.6 games/gomoku : gomoku.6 games/grdc : grdc.6 games/hack : hack.6 games/mille : mille.6 games/monop : monop.6 games/rain : rain.6 games/robots : robots.6 games/tetris : tetris.6 lib/libc/stdlib: rand48.3 lib/libc/time : strftime.3 lib/libc/yp : ypclnt.3 lib/libutil : fmt_scaled.3 login_fbtab.3 sbin/atactl : atactl.8 share/man/man3 : tree.3 share/man/man5 : fbtab.5 share/man/man7 : ports.7 share/man/man8 : security.8 share/man/man9 : VOP_LOOKUP.9 bus_dma.9 bus_space.9 evcount.9 usr.bin/apply : apply.1 usr.bin/cdio : cdio.1 usr.bin/newsyslog: newsyslog.8 usr.bin/top : top.1 usr.bin/units : units.1 usr.bin/ypcat : ypcat.1 usr.bin/ypmatch: ypmatch.1 usr.bin/ypwhich: ypwhich.1 usr.sbin/map-mbone: map-mbone.8 usr.sbin/mopd/mopchk: mopchk.1 usr.sbin/mopd/mopprobe: mopprobe.1 usr.sbin/mopd/moptrace: moptrace.1 usr.sbin/mrouted: mrouted.8 usr.sbin/mtrace: mtrace.8 usr.sbin/pkg_add: pkg_add.1 pkg_create.1 pkg_delete.1 pkg_info.1 pkg_sign.1 usr.sbin/rarpd : rarpd.8 usr.sbin/traceroute: traceroute.8 usr.sbin/ypbind: ypbind.8 usr.sbin/ypldap: ypldap.8 usr.sbin/yppoll: yppoll.8 usr.sbin/ypset : ypset.8 Log message: obvious cases of missing .An; found with the new mandoc(1) MANDOCERR_AN_MISSING warning; no text changes CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/07 19:47:06 Modified files: sbin : Makefile sbin/mount : mount.c sys/arch/alpha/include: reg.h sys/arch/i386/conf: GENERIC files.i386 sys/arch/powerpc/include: reg.h sys/compat/linux: linux_misc.c linux_types.h sys/kern : Makefile kern_exec.c kern_fork.c sys_process.c vfs_init.c sys/sys : mount.h vnode.h share/man/man4 : options.4 usr.sbin/procmap: procmap.c Removed files: sbin/mount_procfs: Makefile mount_procfs.8 mount_procfs.c Log message: Delete procfs; it's always had races and is now unused: no one noticed for months that I broke it before the 5.5 release. confirmed as not being required by ports by sthen@, ajacoutot@, dcoppa@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/07 19:57:01 Removed files: sys/miscfs/procfs: procfs.h procfs_cmdline.c procfs_linux.c procfs_status.c procfs_subr.c procfs_vfsops.c procfs_vnops.c Log message: Actually remove the procfs files CVSROOT: /cvs Module name: src Changes by: chris@cvs.openbsd.org 2014/09/07 20:39:57 Modified files: sys/dev/pci : if_ix.c Log message: Match 82599 as found on SuperMicro AOC-STGN-I1S ok mikeb@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/07 21:01:43 Removed files: sys/arch/i386/i386: procfs_machdep.c Log message: ...and the other file I missed cvs rm'ing in the procfs purge. noted by doug@ CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/09/07 22:40:30 Modified files: sbin/mount : mount.8 share/man/man5 : fstab.5 share/man/man8 : compat_linux.8 sys/conf : files usr.bin/man : man.1 usr.sbin/procmap: procmap.1 Log message: Additional cleanup for procfs removal ok guenther@ CVSROOT: /cvs Module name: src Changes by: chrisz@cvs.openbsd.org 2014/09/07 23:04:40 Modified files: share/man/man5 : port-modules.5 Log message: OCAML_VERSION will be removed, document CONFIGURE_STYLE=oasis ok jca@ CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/07 23:10:10 Modified files: lang/ocaml : ocaml.port.mk Log message: Remove unused and wrong OCAML_VERSION. It's job is now done by bsd.port.arch.mk Noticed and ok by jca@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/08 00:24:13 Modified files: sys/dev/pci : if_de.c if_san_common.c sys/kern : uipc_socket.c sys/net : bridgestp.c if_bridge.c if_enc.c if_pflog.c if_pfsync.c if_pppx.c if_tun.c pf_lb.c pf_norm.c pf_table.c pfkey.c raw_cb.c raw_usrreq.c sys/netinet : igmp.c in4_cksum.c ip_carp.c ip_divert.c ip_ipsp.c ipsec_output.c sys/netinet6 : dest6.c in6_gif.c ip6_divert.c ip6_mroute.c sys/netmpls : mpls_proto.c sys/nfs : nfs_boot.c nfs_vfsops.c Log message: remove uneeded route.h includes ok miod@ mpi@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/08 00:38:07 Modified files: share/man/man5 : port-modules.5 Log message: tweak previous; CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/08 00:51:48 Added files: net/cadaver/patches: patch-configure Log message: Recognize neon 0.30.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/08 01:01:14 Added files: multimedia/gstreamer-0.10/plugins-bad/patches: patch-configure_ac Log message: Recognize 0.30.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/08 01:01:58 Modified files: net/neon : Makefile distinfo net/neon/pkg : PLIST Removed files: net/neon/patches: patch-configure patch-src_ne_openssl_c patch-src_ne_socket_c net/neon/pkg : PFRAG.shared Log message: Update to neon-0.30.0. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/08 01:21:40 Modified files: sys/dev/ic : acx.c Log message: Don't include ; we already include . Add missing and . Makes a sparc64 kernel compile again. CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/08 01:33:58 Modified files: audio/xmcd/patches: patch-install_sh Log message: tell the root check to fuck off CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/08 01:35:31 Modified files: devel/libgtop2 : Makefile Added files: devel/libgtop2/patches: patch-sysdeps_openbsd_glibtop_machine_h Log message: unbreak with upcoming dkstat.h removal CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/08 01:40:29 Modified files: devel/libgtop2/patches: patch-sysdeps_openbsd_cpu_c patch-sysdeps_openbsd_glibtop_machine_h patch-sysdeps_openbsd_open_c Log message: these patches were committed upstream CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/08 01:44:39 Modified files: devel/codeblocks: Makefile Log message: use xargs -r because in FAKE_AS_ROOT=No mode, rights will get fixed beforehand CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/08 01:56:37 Modified files: sysutils/salt : Makefile Log message: textproc/py-yaml and www/py-jinja2 are needed to properly compute the egg-version because it uses the Salt module during build. This should finally unbreak packaging. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/08 02:06:34 Modified files: sysutils/virt-manager: Makefile distinfo sysutils/virt-manager/patches: patch-setup_py patch-virtcli_cliconfig_py sysutils/virt-manager/pkg: PLIST Removed files: sysutils/virt-manager/patches: patch-virtManager_addhardware_py patch-virtManager_create_py patch-virtManager_createinterface_py patch-virtManager_details_py patch-virtManager_fsdetails_py patch-virtManager_gfxdetails_py patch-virtManager_manager_py patch-virtManager_migrate_py patch-virtManager_netlist_py patch-virtManager_storagebrowse_py patch-virtManager_uiutil_py Log message: update to virt-manager-1.1.0 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/08 02:23:36 Modified files: devel/hs-MissingH: Makefile distinfo Log message: Update to MissingH-1.2.1.0 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/08 02:24:17 Modified files: textproc/hs-HaXml: Makefile distinfo Log message: Update to HaXml-1.24.1 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/08 02:28:23 Modified files: security/wpa_supplicant: Makefile Added files: security/wpa_supplicant/patches: patch-wpa_supplicant_main_c Log message: Zap Linuxisms from usage() CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/09/08 02:33:50 Modified files: build : mirrors.dat Log message: add mirror.one.com, in Copenhagen CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/09/08 02:34:58 Modified files: . : ftp.html ftplist openbgpd : ftp.html openntpd : ftp.html portable.html openssh : ftp.html portable.html Log message: sync CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/08 02:57:04 Added files: . : plus56.html Log message: Moving plus.html to plus56.html CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/08 03:09:03 Modified files: . : plus.html Log message: plus.html for Aug 8-24, fixes from jj@. CVSROOT: /cvs Module name: src Changes by: stsp@cvs.openbsd.org 2014/09/08 03:32:04 Modified files: sys/netinet6 : nd6_rtr.c Log message: Prevent addition of redundant IPv6 autoconf addresses. Regression from r1.81 which switched from workq to taskq and incorrectly assumed duplicate addresses would be impossible with taskq. We ended up re-adding the SLAAC address whenever a privacy address expired. ok bluhm@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/08 03:41:31 Modified files: databases/evolution-data-server: Makefile distinfo Log message: Update to evolution-data-server-3.12.6. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/08 03:41:48 Modified files: mail/evolution : Makefile distinfo Log message: Update to evolution-3.12.6. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/08 03:42:08 Modified files: mail/evolution-ews: Makefile distinfo Log message: Update to evolution-ews-3.12.6. CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/08 03:48:42 Modified files: . : plus20.html plus21.html plus22.html plus23.html plus24.html plus25.html plus26.html Log message: rolling the plus*.html files. CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/08 03:52:32 Modified files: . : plus27.html plus28.html plus29.html plus30.html plus31.html plus32.html plus33.html Log message: rolling the plus*.html files CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/08 03:53:05 Modified files: . : plus34.html plus35.html plus36.html plus37.html plus38.html plus39.html plus40.html Log message: rolling the plus*.html files CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/08 03:53:30 Modified files: . : plus41.html plus42.html plus43.html plus44.html plus45.html plus46.html plus47.html Log message: rolling the plus*.html files CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/08 03:53:59 Modified files: . : plus48.html plus49.html plus50.html plus51.html plus52.html plus53.html plus54.html plus55.html Log message: rolling the plus*.html files CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/09/08 04:40:12 Modified files: fonts/fira-fonts: Makefile distinfo fonts/fira-fonts/pkg: PLIST Log message: Update to Fira 3.111 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/08 05:23:37 Modified files: databases/hs-HDBC: Makefile distinfo Log message: Update to HDBC-2.4.0.0 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/08 05:24:42 Modified files: databases/hs-HDBC-mysql: Makefile databases/hs-HDBC-sqlite3: Makefile net/hpodder : Makefile Log message: Bump following hs-HDBC's update CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/08 05:26:09 Modified files: databases/hs-HDBC-postgresql: Makefile distinfo Log message: Update to HDBC-postgresql-2.3.2.2 Take maintainer, as per jasper's request. CVSROOT: /cvs Module name: src Changes by: halex@cvs.openbsd.org 2014/09/08 05:27:49 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: strip excess verbiage from sed expressions ok and prodding ajacoutot@ CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/09/08 05:33:14 Modified files: build : mirrors.dat Log message: "ftp.eu syncs the mirror every 6h" - jj CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/08 06:21:42 Modified files: x11/gnustep/make: Makefile Added files: x11/gnustep/make/patches: patch-Master_rules_make Log message: remove the check for writing to /, as it breaks two ports in FAKE_AS_ROOT=No CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/08 06:34:44 Modified files: audio/hs-libmpd: Makefile distinfo x11/xmobar : Makefile Log message: Update to hs-libmpd-0.8.0.5 Take maintainership from jasper CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/08 06:41:54 Modified files: devel/hs-convertible: Makefile distinfo Log message: Update to convertible-1.1.0.0 (forgotten in my previous round) CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/08 07:51:29 Modified files: app/cwm : calmwm.h group.c mousefunc.c Log message: Now that a group knows its screen, only pass down the group_ctx. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2014/09/08 08:29:05 Modified files: usr.bin/tmux : format.c tmux.1 Log message: Add window_last_flag and window_zoomed_flag. From John Morrissey. CVSROOT: /cvs Module name: src Changes by: stsp@cvs.openbsd.org 2014/09/08 08:42:40 Modified files: sys/netinet6 : Tag: OPENBSD_5_6 nd6_rtr.c Log message: Merge from -current: Prevent addition of redundant IPv6 autoconf addresses. Regression from r1.81 which switched from workq to taskq and incorrectly assumed duplicate addresses would be impossible with taskq. We ended up re-adding the SLAAC address whenever a privacy address expired. ok bluhm@, sthen@ (for 5.6-stable) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/08 09:43:04 Modified files: devel/yaml-cpp/patches: patch-CMakeLists_txt Log message: regen, no pkg change CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/09/08 09:45:20 Modified files: lib/libc/regex : regcomp.c Log message: add \ support to regcomp. prompted by renewed interest from jsg because such support is reportedly common and in somewhat wide use. undocumented for now because we don't endorse this. ok jsg millert CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/08 10:12:11 Modified files: comms/conserver: Makefile distinfo comms/conserver/patches: patch-conserver_Makefile_in patch-conserver_cf_Makefile_in patch-conserver_consent_c patch-conserver_cutil_c patch-conserver_group_c patch-console_console_c comms/conserver/pkg: README Log message: update to conserver 8.1.20, add more notes for upgrading users on how to unbreak things following the uid change CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/08 10:47:59 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Put chpass(1) args between quotes. spotted by matthieu@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/08 11:02:42 Modified files: devel/yaml-cpp : Makefile devel/yaml-cpp/pkg: PLIST Removed files: devel/yaml-cpp/pkg: PFRAG.shared Log message: yaml-cpp tweaks: add build dep on boost (yaml-cpp headers require it - found during a failing opencoorio build), merge PFRAG.shared into PLIST. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/08 11:04:51 Modified files: devel/hs-atom : Makefile devel/hs-base64-bytestring: Makefile devel/hs-blaze-builder: Makefile devel/hs-data-default: Makefile devel/hs-enumerator: Makefile devel/hs-hlint : Makefile devel/hs-largeword: Makefile devel/hs-monads-tf: Makefile devel/hs-tagged: Makefile devel/hs-type-level: Makefile security/hs-asn1-data: Makefile security/hs-certificate: Makefile security/hs-crypto-api: Makefile security/hs-cryptocipher: Makefile security/hs-tls: Makefile textproc/hs-attoparsec-enumerator: Makefile textproc/gonzui: Makefile audio/p5-cddb : Makefile audio/p5-Audio-MPD: Makefile audio/p5-Audio-MPD-Common: Makefile devel/p5-POE : Makefile devel/stm32loader: Makefile graphics/gfract: Makefile net/p5-POE-Component-IRC: Makefile net/p5-POE-Filter-IRCD: Makefile net/p5-Nmap-Scanner: Makefile www/p5-CGI-XMLApplication: Makefile Log message: drop maintainership of ports i haven't used in a long time and have no use for anymore CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/09/08 11:44:18 Modified files: www/mhonarc : Makefile distinfo Removed files: www/mhonarc/patches: patch-lib_mhamain_pl patch-lib_readmail_pl Log message: Maintainer update to MHonArc-2.6.19. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/09/08 11:51:09 Modified files: databases/tinycdb: Makefile distinfo databases/tinycdb/patches: patch-Makefile patch-tests_sh databases/tinycdb/pkg: PLIST Removed files: databases/tinycdb/pkg: PFRAG.shared Log message: Maintainer update to tinycdb-0.78. - remove most of the makefile patching - respect DEBUG=-g - merge PFRAG.shared Proofreading by sthen@. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/08 12:10:01 Modified files: sys/net : if_pflog.c pfvar.h Log message: When logging a packet to a listener on the pflog0 interface, the function pflog_bpfcopy() is setting up a packet description with pf_setup_pdesc(). When pf_setup_pdesc() is droppig a bad packet, it increments the the pf status counters. This way bad packets could be accounted multiple times. Now pflog_bpfcopy() passes a reason pointer NULL to indicate that no accounting should be done. From Florian Riehm; OK henning@ CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/09/08 12:35:20 Modified files: net/p5-Net-INET6Glue: Makefile distinfo Log message: - update p5-Net-INET6Glue to 0.603 - depend on p5-IO-Socket-IP instead of p5-IO-Socket-INET6 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/08 12:54:30 Modified files: archivers/unrar: Makefile distinfo archivers/unrar/patches: patch-makefile patch-os_hpp patch-rijndael_cpp patch-rijndael_hpp Removed files: archivers/unrar/patches: patch-suballoc_cpp Log message: update to 5.1.6; specifically tested on sparc64 CVSROOT: /cvs Module name: src Changes by: naddy@cvs.openbsd.org 2014/09/08 13:30:06 Modified files: lib/libc : shlib_version Log message: bump minor after addition of \ support to regcomp; ok miod@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/08 13:42:57 Modified files: sys/uvm : uvm_aobj.c Log message: Don't sleep on allocation of hash table entries. Should fix crashes people have been seeing with tmpfs. Based on a similar fix from Bitrig by Owain Ainsworth. ok jsg@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/08 13:52:22 Modified files: infrastructure/templates: network.conf.template Log message: remove a defunct site from and add a few more to MASTER_SITES_GNOME CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/08 14:01:03 Log message: Import dwb 2014.03.07. dwb is a lightweight web browser based on the webkit web browser engine and the gtk toolkit. dwb is highly customizable and can be easily configured through a web interface. It is mostly keyboard driven, inspired by firefox's vimperator plugin. From maintainer Henrik Friedrichsen with tweaks from me and sthen@, ok sthen@ Status: Vendor Tag: hfriedrichsen Release Tags: landry_20140908 N ports/www/dwb/distinfo N ports/www/dwb/Makefile N ports/www/dwb/pkg/PLIST N ports/www/dwb/pkg/DESCR N ports/www/dwb/patches/patch-config_mk N ports/www/dwb/patches/patch-dwbremote_Makefile N ports/www/dwb/patches/patch-src_session_c N ports/www/dwb/patches/patch-dwbem_Makefile N ports/www/dwb/patches/patch-exar_Makefile N ports/www/dwb/patches/patch-src_util_Makefile N ports/www/dwb/patches/patch-src_Makefile N ports/www/dwb/patches/patch-src_config_mk No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/08 14:01:31 Modified files: www : Makefile Log message: +dwb CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/09/08 14:08:12 Modified files: www/p5-CGI-Lite: Makefile distinfo Log message: Update p5-CGI-Lite to 2.04. OK Abel Abraham Camarillo Ojeda (MAINTAINER) and ajacoutot@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/08 14:11:22 Modified files: app/cwm : calmwm.c calmwm.h client.c kbfunc.c mousefunc.c screen.c xutil.c Log message: Remove duplicate client queue (mruq); instead, remove and take the global Clientq and place it inside screen_ctx since every client belongs to a screen, then use the same per screen clientq to track stacking order (the sole reason for mruq). CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/09/08 14:18:34 Modified files: textproc/markdown: Makefile distinfo textproc/markdown/pkg: PLIST Log message: Update markdown to 2.4.1 OK ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/08 14:20:52 Modified files: graphics/birdfont: Makefile distinfo graphics/birdfont/pkg: PLIST Log message: Update to birdfont 1.1 CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/08 14:25:03 Modified files: sys/dev/acpi : acpi.c Log message: Clear the PME Status bit on PCI devices in response to Device Wake events. Fixes the interrupt storm on the 2009 Mac mini with WOL enabled on its nfe(4) interface. ok mlarkin@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/08 14:32:40 Modified files: app/cwm : client.c Log message: since mruq has been folded in, rename mru-named functions CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/08 14:37:02 Modified files: app/cwm : client.c Log message: more style nits and wrapping CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2014/09/08 14:54:05 Modified files: security/p5-IO-Socket-SSL: Makefile distinfo Log message: update p5-IO-Socket-SSL 1.998 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/08 15:12:57 Modified files: www/dwb : Makefile Log message: LOCALBASE->TRUEPREFIX from aja CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/08 15:15:14 Modified files: app/cwm : calmwm.h client.c group.c mousefunc.c Log message: name the group client queue appropriately, like other queues CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/08 15:21:05 Modified files: infrastructure/templates: network.conf.template Log message: unbreak the ports tree; frantisek holop CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/08 15:24:27 Modified files: app/cwm : client.c Log message: move the check for an empty queue up during cycle CVSROOT: /cvs Module name: src Changes by: chris@cvs.openbsd.org 2014/09/08 15:36:39 Modified files: sys/dev/pci : pcidevs Log message: Distinguish the 82599EN from the original 82599 ok miod@ CVSROOT: /cvs Module name: src Changes by: chris@cvs.openbsd.org 2014/09/08 15:36:50 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: sync CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/09/08 16:28:08 Modified files: security/spiped: Makefile distinfo Log message: Update spiped to 1.4.1 CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/09/08 16:29:04 Modified files: mail/pop3d : Makefile distinfo Log message: Update pop3d to 1.0.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/08 16:36:22 Modified files: mail/mutt : Makefile Log message: build dep on www/lynx, problem reported by frantisek holop CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/09/08 16:42:03 Log message: Import ports/sysytils/login_duo. "reads good to me" landry@ login_duo provides two-factor authentication for Unix systems. When integrated with sshd(8) a challenge is sent to the users cell phone before access is granted. Status: Vendor Tag: jturner Release Tags: jturner_20140908 N ports/sysutils/login_duo/Makefile N ports/sysutils/login_duo/distinfo N ports/sysutils/login_duo/pkg/DESCR N ports/sysutils/login_duo/pkg/PLIST N ports/sysutils/login_duo/pkg/README N ports/sysutils/login_duo/patches/patch-login_duo_login_duo_8 No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/09/08 16:43:08 Modified files: sysutils : Makefile Log message: +login_duo CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/08 17:50:45 Modified files: sys/kern : subr_pool.c Log message: change some (flags & PR_WAITOK) to ISSET(flags, PR_WAITOK) no functional change. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/08 20:07:17 Modified files: sys/sys : socketvar.h sys/kern : uipc_socket.c uipc_socket2.c uipc_syscalls.c Log message: Delete the SS_ISCONFIRMING flag that supported delayed connection confirmation: it was only used for netiso, which was deleted a *decade* ago ok mpi@ claudio@ ports scan by sthen@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/08 21:08:30 Modified files: sys/dev/pci : mfi_pci.c sys/dev/ic : mfi.c Log message: mark the interrupt handler mpsafe, and give up biglock in the scsi cmd submission paths. take biglock again when calling back into the scsi stack. tested on a variety of cards here, including the skinny mfis on the firewall next to mpsafe myx. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/08 21:41:08 Modified files: usr.bin/telnet : commands.c externs.h sys_bsd.c telnet.c utilities.c Log message: Eliminate a pile of casts that were superfluous or wrong, or that were the result of bad type choices, particularly (unsigned char *) vs (const char *). Also, use reallocarray(). CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/08 21:50:43 Modified files: lib/libc/sys : accept.2 Log message: We have no protocols which require explicit confirmation CVSROOT: /cvs Module name: src Changes by: todd@cvs.openbsd.org 2014/09/08 22:20:24 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus mi distrib/sets/lists/comp: mi distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/08 23:43:25 Modified files: sys/scsi : scsi_base.c Log message: rework the hotplug requests to use tasks rather than workqs. tested on mpi(4) sas. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/09 00:02:09 Modified files: sysutils/login_duo: Makefile sysutils/login_duo/pkg: README Log message: LOCALBASE -> PREFIX CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/09 00:32:37 Modified files: lib/libc/sys : recv.2 send.2 setuid.2 wait.2 Log message: Various updates and corrections to SYNOPSIS, ERRORS, and STANDARDS Mention send(MSG_EOR) CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/09/09 00:37:57 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Replace last usage of awk in sysmerge with a shell equivalent. based on a diff from and OK ajacoutot@ CVSROOT: /cvs Module name: src Changes by: blambert@cvs.openbsd.org 2014/09/09 01:07:39 Modified files: sys/sys : sched.h sys/kern : vfs_bio.c vfs_sync.c sys/uvm : uvm_pdaemon.c Log message: Make the cleaner, syncer, pagedaemon, aiodone daemons all yield() if the cpu is marked SHOULDYIELD. ok miod@ tedu@ phessler@ CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/09 01:11:41 Modified files: . : plus56.html Log message: This file should also have been rolled yesterday. CVSROOT: /cvs Module name: www Changes by: brett@cvs.openbsd.org 2014/09/09 01:14:27 Modified files: . : plus.html Log message: Deleted the draft entries of plus.html that somehow got pasted in underneath the final version. Spotted by Scott Vandebilt (Scott (at) datagenic (dot) com) and Igor Sobrado (isd (at) orion (dot) ciencias (dot) uniovi (dot) es). CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/09 01:23:19 Modified files: lib/libc/sys : rmdir.2 unlink.2 Log message: Various updates and corrections to SYNOPSIS, ERRORS, and STANDARDS Mention that unlinkat() serves the role of rmdirat(). CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 01:30:29 Modified files: devel/ruby-rspec/specinfra: Makefile distinfo Log message: - update to specinfra-1.14.0 (most recent version that works with serverspec-1.7.0) CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 01:31:00 Modified files: devel/ruby-rspec/serverspec: Makefile distinfo devel/ruby-rspec/serverspec/pkg: PLIST Log message: - update to serverspec-1.7.0, most recent version that works with rspec2 CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/09 01:36:42 Modified files: lib/libc/sys : rmdir.2 unlink.2 Log message: Don't need to mention names on .Rv line here CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/09/09 01:47:04 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: Rreplace [[ -n $(grep..) ]] and [[ -z $(grep..) ]] with grep -q and ! grep -q. OK ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 01:52:07 Modified files: devel/msp430 : Makefile.inc Log message: instruct portroach to ignore; the versions used are explicitly not the latest since it's the LTS release. besides, there may not ever be a release again in the current form and shape. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 01:53:02 Log message: import puppet-syntax-1.3.0 Syntax checks for Puppet manifests, templates, and Hiera YAML. ok aja@ Status: Vendor Tag: jasper Release Tags: jasper_20140909 N ports/sysutils/ruby-puppet-syntax/distinfo N ports/sysutils/ruby-puppet-syntax/Makefile N ports/sysutils/ruby-puppet-syntax/pkg/PLIST N ports/sysutils/ruby-puppet-syntax/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 01:54:01 Modified files: sysutils : Makefile Log message: +ruby-puppet-syntax CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 01:58:11 Modified files: devel/ruby-rspec/puppetlabs_spec_helper: Makefile distinfo devel/ruby-rspec/puppetlabs_spec_helper/pkg: PLIST Log message: update to puppetlabs_spec_helper-0.8.1 CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/09 02:16:12 Modified files: lib/libc/sys : setuid.2 Log message: tweak previous; CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/09 02:16:52 Modified files: lib/libc/sys : sigprocmask.2 Log message: Don't point to for SIG_*; they're told to use and don't need anything beyond that CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/09 02:17:59 Modified files: lib/libc/sys : sigaction.2 sigaltstack.2 sigpending.2 sigreturn.2 sigsuspend.2 Log message: Various updates and corrections to SYNOPSIS, ERRORS, and STANDARDS Mention that unlinkat() serves the role of rmdirat(). CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/09/09 02:43:01 Modified files: faq : current.html Log message: expand the notes about /etc/rc changes making an explicit note that updating etc* files (especially rc.conf) is a required step CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/09 02:53:51 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: 'rm -f' in case we skip a release. No functional change, just cosmetic. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/09 03:00:17 Modified files: lib/libc/sys : shutdown.2 Log message: Identify domains with AF_* instead of PF_* here Tweaks to SYNOPSIS and RETURN VALUES CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 03:04:31 Modified files: mail/procmail : Tag: OPENBSD_5_5 Makefile mail/procmail/patches: Tag: OPENBSD_5_5 patch-src_formisc_c Log message: security fix for CVE-2014-3618 CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/09 03:34:04 Modified files: infrastructure/mk: bsd.port.mk pkgpath.mk Log message: force umask 022 in fake !sudo situations. CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/09 03:40:23 Modified files: usr.sbin/pkg_add/OpenBSD: PackingElement.pm PackingList.pm ArcCheck.pm Log message: register @newuser/@newgroup so that we try creating tarballs with the correct users (which doesn't really matter all that much, as the owner/group in the plist are what matters) Otherwise, if we're not root, dismiss user id and groups, replace with root/bin (significant fix from previous version: this interprets $( correctly). Should help with FAKE_AS_ROOT=No CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2014/09/09 03:45:36 Modified files: usr.bin/ssh : sshd_config.5 Log message: mention permissions on tun(4) devices in PermitTunnel documentation; bz#2273 CVSROOT: /cvs Module name: ports Changes by: stsp@cvs.openbsd.org 2014/09/09 04:08:23 Modified files: www/apache-httpd: Makefile distinfo Log message: update to apache-httpd 2.2.29; ok sthen CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/09 05:10:35 Modified files: editors/nano : Makefile Removed files: editors/nano/patches: patch-doc_syntax_asm_nanorc patch-doc_syntax_awk_nanorc patch-doc_syntax_c_nanorc patch-doc_syntax_cmake_nanorc patch-doc_syntax_fortran_nanorc patch-doc_syntax_gentoo_nanorc patch-doc_syntax_java_nanorc patch-doc_syntax_makefile_nanorc patch-doc_syntax_nanorc_nanorc patch-doc_syntax_objc_nanorc patch-doc_syntax_ocaml_nanorc patch-doc_syntax_perl_nanorc patch-doc_syntax_php_nanorc patch-doc_syntax_pov_nanorc patch-doc_syntax_python_nanorc patch-doc_syntax_ruby_nanorc patch-doc_syntax_sh_nanorc patch-doc_syntax_tcl_nanorc Log message: regcomp now supports \ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/09 05:10:50 Modified files: x11/x11vnc : Makefile x11/x11vnc/patches: patch-x11vnc_ssltools_h Log message: regcomp now supports \; ok sthen@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 06:55:40 ports/www/p5-Plack/patches Update of /cvs/ports/www/p5-Plack/patches In directory cvs.openbsd.org:/tmp/cvs-serv29500/patches Log Message: Directory /cvs/ports/www/p5-Plack/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/09 07:48:28 Modified files: www/nginx : Makefile www/nginx/pkg : PLIST Added files: www/nginx/pkg : README Log message: add a README to www/nginx with clues about log-rotation, ok aja@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 07:53:40 Modified files: lang/lua/5.1 : Tag: OPENBSD_5_5 Makefile Added files: lang/lua/5.1/patches: Tag: OPENBSD_5_5 patch-src_ldo_c Log message: Security fix for CVE-2014-5461 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 07:54:43 Modified files: lang/lua/5.1 : Makefile Added files: lang/lua/5.1/patches: patch-src_ldo_c Log message: Security fix for CVE-2014-5461 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 08:01:26 Modified files: lang/node : Makefile Added files: lang/node/patches: patch-deps_v8_src_isolate_h Log message: Security fix for CVE-2014-5256 ok abieber@ (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/09 08:05:48 Modified files: www/nginx : Makefile www/nginx/pkg : PLIST Log message: @sample nginx config files, suggested by/ok aja@ CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2014/09/09 08:10:35 Modified files: usr.bin/vi/ex : ex_subst.c Log message: We no longer need to convert "\<" and "\>" to "[[:<:]]" and "[[:>:]]" respectively now that the former is natively supported. OK jsg@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/09 08:49:56 Modified files: lang/node : Tag: OPENBSD_5_5 Makefile Added files: lang/node/patches: Tag: OPENBSD_5_5 patch-deps_v8_src_isolate_h Log message: Security fix for CVE-2014-5256 CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/09/09 12:55:08 Modified files: sys/dev/pci : if_iwn.c if_iwnreg.h if_iwnvar.h Log message: Backport https://svnweb.freebsd.org/base?view=revision&revision=258829 to fix scans with various iwn(4) devices. From Fabian Raetz, testing by Fabian, Marcin Piotr Pawlowski, Mike Burns, kettenis@ and myself. ok kettenis@ with minor tweaks for whitespace in #define lines which I've done; also I have done s/IWL/IWN/ in comments as noticed by dcoppa@. CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/09/09 12:56:24 Modified files: sys/dev/pci : if_iwnreg.h Log message: fix remaining spaces/tabs issues in #define lines CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/09 13:33:55 Modified files: usr.bin/mandoc : mandocdb.c Log message: If a manpath directory (for example, a _whatdb entry from man.conf(5) or an entry in the MANPATH environment variable) does not exist, silently skip it. This brings makewhatis(8) back closer to the behaviour of espie@'s version and ought to shut up the weekly(8) whining observed by henning@ on machines not having xbase installed. Also, don't error out after the first unusable manpath entry, still try the others. Of course, still complain about non-existent directories specified on the command line and about any directories failing for other reasons than ENOENT. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/09 14:15:25 Modified files: databases/libpqxx: Makefile databases/libpqxx/patches: patch-tools_lint Log message: * regcomp (and thus grep) now supports \ * running the tests requires the server ok zhuk@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/09 14:27:48 Modified files: sys/dev/pci : arc.c Log message: replace scsi_task(), which is a wrapper around workqs, with a quick conversion to tasks. tested by chris@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/09 14:30:08 Modified files: sys/scsi : scsiconf.h Log message: remove the scsi_task() wrapper around workq_add_task now that nothing uses it. dont need to include workq.h anymore here either now. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/09 14:33:24 Modified files: sys/netinet6 : nd6_rtr.c Log message: workqs were replaced with tasks in here, so dont need workq.h anymore. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/09 15:03:24 Modified files: x11/pcmanfm : Makefile distinfo Log message: update to pcmanfm 1.2.2, from Rafael Sadowski CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/09 15:27:17 Modified files: www/seamonkey : Makefile distinfo www/seamonkey/patches: patch-mozilla_js_src_configure_in patch-mozilla_js_src_ctypes_libffi_src_dlmalloc_c patch-mozilla_media_libvpx_Makefile_in patch-mozilla_storage_src_mozStorageConnection_cpp patch-suite_installer_Makefile_in www/seamonkey/pkg: PLIST-lightning Added files: www/seamonkey/patches: patch-mozilla_intl_icu_source_Makefile_in Removed files: www/seamonkey/patches: patch-calendar_base_jar_mn patch-calendar_lightning_jar_mn patch-mozilla_browser_components_certerror_content_aboutCertError_xhtml patch-mozilla_toolkit_components_downloads_nsDownloadManager_cpp patch-mozilla_xpcom_io_SpecialSystemDirectory_cpp Log message: (Long awaited) update to seamonkey 2.29 / lightning 3.4. - See http://www.seamonkey-project.org/releases/seamonkey2.29/ - this is based on gecko 32, so contains all the new changes since gecko 20 (which was the basis for seamonkey 2.26) - remove patches to fix lightning display (merged in #1001985) - remove mozilla/browser/components/certerror/content/aboutCertError.xhtml, boring patch. - add intl/icu patch from #990196 - remove patch-mozilla_toolkit_components_downloads_nsDownloadManager_cpp and patch-mozilla_xpcom_io_SpecialSystemDirectory_cpp, they neved made any sense to me and this is the wrong place to modify this. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/09 15:27:38 Modified files: www/seamonkey-i18n: Makefile.inc distinfo Log message: Update to seamonkey-i18n 2.29. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/09 15:50:48 Modified files: net/nagios/check_esxi_hardware: Makefile distinfo Log message: update to check_esxi_hardware 20140319, committing on behalf of merdely@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/09 18:02:21 Modified files: security/libsrtp: Makefile Log message: CATEGORIES+=telephony, lowercase at start of COMMENT CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/09 18:07:39 Modified files: graphics/GraphicsMagick: Makefile distinfo graphics/GraphicsMagick/patches: patch-configure graphics/GraphicsMagick/pkg: PLIST Log message: Update to GraphicsMagick 1.3.20. ok sthen@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/09 20:55:46 Modified files: lib/libc/sys : sigaction.2 Log message: update STANDARDS reference from POSIX 1990 to POSIX 2008; joint work with and ok guenther@ CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2014/09/09 22:39:50 Modified files: sys/compat/linux: linux_socket.c Log message: Avoid possible use of uninitialized variable. From Maxime Villard via a post to tech@ a long time ago ok guenther@, doug@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/09 22:40:02 Modified files: gnu/usr.bin/cc/include: Makefile Added files: gnu/gcc/gcc/config/i386: cpuid.h Log message: Add cpuid.h from clang r197399 with additional feature bits, and defines for compatibility with the equivalent gcc header. cpuid.h was introduced in gcc 4.3 and a compatible header has been included with recent versions of clang. Earlier version ok miod@. Tested in a ports bulk build by landry@. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/09 23:14:38 Modified files: mail/enigmail : Makefile distinfo Log message: Update to enigmail 1.7.2 See https://www.enigmail.net/download/changelog.php#enig1.7.2 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/10 00:08:42 Modified files: sysutils/salt : Makefile distinfo sysutils/salt/patches: patch-salt_states_user_py Log message: Update to salt-2014.1.11. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/10 00:10:31 Modified files: security/p11-kit: Makefile distinfo security/p11-kit/pkg: PLIST Log message: Update to p11-kit-0.20.6. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 00:35:19 Modified files: www/p5-Plack : Makefile Added files: www/p5-Plack/patches: patch-lib_Plack_App_File_pm Log message: Security fix for CVE-2014-5269 ok maintainer CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 00:43:39 Modified files: www/p5-Plack : Tag: OPENBSD_5_5 Makefile Added files: www/p5-Plack/patches: Tag: OPENBSD_5_5 patch-lib_Plack_App_File_pm Log message: Security fix for CVE-2014-5269 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 00:44:26 Modified files: www/firefox-esr: Tag: OPENBSD_5_5 Makefile distinfo Log message: security update to firefox-24.8.0esr - note, this will be the last release of the 24ESR series CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 00:44:55 Modified files: www/firefox-esr-i18n: Tag: OPENBSD_5_5 Makefile.inc distinfo Log message: sync with firefox-24.8.0esr CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/10 01:04:23 Modified files: lib/libc/sys : sigaction.2 lib/libc/gen : signal.3 Log message: sockatmark(3) has been implemented; add it to the async-signal-safe lists CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 01:07:25 Modified files: devel/glib : Makefile x11/gtk+ : Makefile Log message: tell PORTROACH to ignore glib/gtk versions from this era, ie. stick to 1.x CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 01:13:06 Modified files: devel/rebar : Makefile distinfo Log message: update to rebar-2.5.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 01:16:24 Modified files: databases/leveldb: Makefile Log message: moved to github, but keep previous master sites as 1.5.0 wasn't released on github. this port could use an update to 1.7.0 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 01:19:10 Modified files: graphics/goocanvas: Makefile Log message: stick to versions 1.x CVSROOT: /cvs Module name: src Changes by: dcoppa@cvs.openbsd.org 2014/09/10 01:22:09 Modified files: sys/dev/pci : if_iwn.c Log message: s/IWL/IWN/ in comment here too CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/09/10 01:46:51 Modified files: games/openxcom : Makefile games/openxcom/patches: patch-CMakeLists_txt games/openxcom/pkg: PLIST Log message: Add desktop file and icons. Patch was sent upstream. OK jsg@, maintainer timed out. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 02:30:20 Modified files: net/farstream : Makefile distinfo net/farstream/pkg: PLIST Removed files: net/farstream/patches: patch-tests_check_testutils_c patch-tests_check_transmitter_stunalternd_c patch-transmitters_multicast_fs-multicast-transmitter_c patch-transmitters_rawudp_fs-rawudp-transmitter_h Log message: update to farstream-0.2.4 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/10 02:30:31 Log message: import ports/telephony/libzrtp, from maintainer Dmitrij D. Czarkoff, ok landry@ Zfone is VoIP encryption software, designed by Phil Zimmermann of PGP. This SDK is suitable for inclusion in software VoIP clients, firmware for hardware VoIP phones, VoIP PBX servers, mobile VoIP clients, and SIP border control servers. The SDK enables interoperation with the rest of the ZRTP community. Status: Vendor Tag: sthen Release Tags: sthen_20140910 N ports/telephony/libzrtp/Makefile N ports/telephony/libzrtp/distinfo N ports/telephony/libzrtp/patches/patch-include_zrtp_config_user_h N ports/telephony/libzrtp/patches/patch-third_party_bnlib_Makefile_in N ports/telephony/libzrtp/patches/patch-configure_in N ports/telephony/libzrtp/pkg/DESCR N ports/telephony/libzrtp/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/10 02:30:48 Modified files: telephony : Makefile Log message: +libzrtp CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 02:31:20 Modified files: net : Makefile Removed files: net/papyon : Makefile distinfo net/papyon/patches: patch-papyon_media_conference_py net/papyon/pkg : DESCR PLIST Log message: remove papyon which is unused (telepathy-butterfly was removed years ago), and unmaintained upstream (no activity in 3 years). ok aja@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 02:33:10 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: register papyon CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/10 02:36:18 Modified files: math/coq : Makefile Log message: Add missing BUILD_DEPENDS/lang/ocaml-camlp4 to math/coq noticed by landry@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/10 02:42:33 Modified files: devel/lua-lgi : Makefile distinfo devel/lua-lgi/pkg: DESCR PLIST Log message: update to lgi-0.8.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/10 03:59:55 Modified files: www/squid/stable: Makefile distinfo Log message: SECURITY update to squid 3.4.7 - clients can perform a DoS due to incorrect input validation in range checking. http://www.squid-cache.org/Advisories/SQUID-2014_2.txt CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/10 04:09:04 Modified files: www/squid/stable: Tag: OPENBSD_5_6 Makefile distinfo Log message: SECURITY update to squid 3.4.7 - clients can perform a DoS due to incorrect input validation in range checking. http://www.squid-cache.org/Advisories/SQUID-2014_2.txt CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/10 04:11:08 Modified files: www/squid/stable: Tag: OPENBSD_5_5 Makefile distinfo www/squid/stable/patches: Tag: OPENBSD_5_5 patch-src_client_side_reply_cc Log message: SECURITY update to squid 3.3.13 - clients can perform a DoS due to incorrect input validation in range checking. http://www.squid-cache.org/Advisories/SQUID-2014_2.txt CVSROOT: /cvs Module name: ports Changes by: rpointel@cvs.openbsd.org 2014/09/10 05:17:45 Log message: import distorm3, powerful disassembler library for x86/amd64 (needed for volatility). ok and few tweaks by sthen@ (thanks). Status: Vendor Tag: rpointel Release Tags: rpointel_2014-Sep-10 N ports/security/distorm3/Makefile N ports/security/distorm3/distinfo N ports/security/distorm3/pkg/PLIST N ports/security/distorm3/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: rpointel@cvs.openbsd.org 2014/09/10 05:19:29 Log message: import volatility, memory artifact extraction utility framework. few tweaks and ok sthen@ (thanks). Status: Vendor Tag: rpointel Release Tags: rpointel_2014-Sep-10 N ports/security/volatility/Makefile N ports/security/volatility/distinfo N ports/security/volatility/pkg/PLIST N ports/security/volatility/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: rpointel@cvs.openbsd.org 2014/09/10 05:21:10 Modified files: security : Makefile Log message: + SUBDIR += distorm3 + SUBDIR += volatility CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/10 05:25:32 Modified files: lib/libc/regex : re_format.7 Log message: document \ as being non standard from Pedro F. Giffuni in FreeBSD pr 153257 ok millert@ tedu@ CVSROOT: /cvs Module name: ports Changes by: rpointel@cvs.openbsd.org 2014/09/10 05:28:06 Log message: import foremost, forensic data recovery program. few tweaks and ok sthen@ (thanks). Status: Vendor Tag: rpointel Release Tags: rpointel_2014-Sep-10 N ports/security/foremost/Makefile N ports/security/foremost/distinfo N ports/security/foremost/pkg/PLIST N ports/security/foremost/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: rpointel@cvs.openbsd.org 2014/09/10 05:29:08 Modified files: security : Makefile Log message: SUBDIR += foremost CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/10 05:55:24 Modified files: x11/gnome/doc-utils: Makefile Removed files: x11/gnome/doc-utils/patches: patch-doc_xslt_Makefile_in Log message: * regcomp (and thus grep) now supports \ * drop misplaced GNU grep dependency ok ajacoutot@, jasper@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/10 05:58:47 Modified files: audio/sonata : Makefile distinfo Log message: Update to a newer checkout. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/10 06:50:32 Modified files: telephony/libzrtp: Makefile telephony/libzrtp/pkg: PLIST Log message: don't enable sqlite, it does fix tests, but breaks use with WIP baresip port CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/09/10 07:16:20 Modified files: usr.sbin/syslogd: privsep.c syslogd.c syslogd.h Log message: Remove redundant null check and rename vars consistently in syslogd Merge in more functionality from bluhm's patch. ok bluhm@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/10 09:10:19 Modified files: lib/libc/regex : re_format.7 Log message: zap trailing whitespace; CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/10 09:39:57 Modified files: usr.sbin/httpd : httpd.h server_http.c Log message: Handle different possible variations of the Host header (eg. www.example.com, www.example.com:80, [2001:db8::1], [2001:db8::1]:80). The port is optional and is typically used on non-default ports. If the server name is a plain IPv6 address, it is commonly specified in square brackets. Makes ajacoutot@ happy OK florian@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2014/09/10 10:51:42 Modified files: usr.bin/openssl: Makefile Log message: Disable -Wshadow again, since it breaks builds on vax with gcc3. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/10 11:08:03 Modified files: sysutils/salt : Makefile sysutils/salt/files: openbsd_sysctl.py Log message: Fix the sysctl module when a value is already set. CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/10 13:14:30 Modified files: textproc/the_silver_searcher: Makefile distinfo Log message: Update to 0.24.1 From maintainer Florian Stinglmayr - thanks! CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/10 13:15:50 Modified files: net/hexchat : Makefile distinfo Log message: Update to hexchat 2.10.1, from MAINTAINER. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/09/10 13:47:17 Modified files: editors/emacs : Makefile Log message: Cope with FAKE_AS_ROOT=Yes. No package change. CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/09/10 14:21:43 Modified files: sysutils/ansible: Makefile Added files: sysutils/ansible/patches: patch-lib_ansible_runner_action_plugins_copy_py Log message: Patch ansible copy.py to write new line at end of file if 'content' passed without newline. suggested and OK landry@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/10 14:30:38 Modified files: app/cwm : calmwm.h client.c Log message: fold in 'active' into 'flags' CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/10 14:39:21 Modified files: mail/mozilla-thunderbird: Makefile distinfo mail/thunderbird-i18n: Makefile.inc distinfo Log message: Bugfix update to thunderbird 31.1.1. See https://www.mozilla.org/en-US/thunderbird/31.1.1/releasenotes/ CVSROOT: /cvs Module name: src Changes by: todd@cvs.openbsd.org 2014/09/10 15:55:42 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/10 17:09:31 Modified files: devel/tcllib/patches: patch-installer_tcl patch-support_installation_actions_tcl Log message: Make installer work with FAKE_AS_ROOT=no. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/10 17:10:04 Modified files: devel/tklib/patches: patch-installer_tcl patch-support_installation_actions_tcl Log message: Make installer work with FAKE_AS_ROOT=no. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/10 21:49:27 Modified files: lang/jimtcl : Makefile Log message: Tidy Makefile. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/11 00:28:41 Modified files: sysutils/salt : Makefile Added files: sysutils/salt/patches: patch-salt_states_file_py Log message: Always add a newline character for 'contents'; already fixed in salt->=2014.7.0. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/09/11 01:08:37 Modified files: distrib/notes : m4.common Log message: Tweak notes after moving xetc to xbase. OK matthieu@ ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/11 01:40:07 Modified files: security/dante : Makefile distinfo security/dante/patches: patch-example_sockd-basic_conf patch-example_sockd_conf Log message: Bugfix update to dante-1.4.1 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/11 02:47:03 Modified files: lang/scm : Makefile Log message: Not a GNU configure script; sync WANTLIB while here. CVSROOT: /cvs Module name: ports Changes by: zhuk@cvs.openbsd.org 2014/09/11 03:02:13 Modified files: audio/clementine: Makefile distinfo audio/clementine/patches: patch-CMakeLists_txt patch-src_CMakeLists_txt patch-src_config_h_in patch-src_core_songloader_cpp patch-src_core_utilities_cpp patch-src_internet_spotifyblobdownloader_cpp Log message: Maintaince update of Clementine to 1.2.3. Contains minor bugfixes. Also adds support for GCC 4.9 and CMake 3.x. Problem with CMake 3.x noticed by landry@, fix from upstream repo via dcoppa@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/11 03:06:11 Modified files: net/tor : Tag: OPENBSD_5_5 Makefile distinfo Log message: Update to tor 0.2.4.23; mitigates the attack described at https://blog.torproject.org/blog/tor-weekly-news-%E2%80%94-august-6th-2014 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/11 03:14:45 Modified files: net/tor : Tag: OPENBSD_5_6 Makefile distinfo Log message: Update to tor 0.2.4.23; mitigates the attack described at https://blog.torproject.org/blog/tor-weekly-news-%E2%80%94-august-6th-2014 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/11 03:55:17 Modified files: www/bacula-web : Tag: OPENBSD_5_6 Makefile distinfo www/bacula-web/pkg: Tag: OPENBSD_5_6 PLIST Log message: SECURITY update to bacula-web-6.0.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/11 03:55:33 Modified files: print/cups : Tag: OPENBSD_5_6 Makefile Added files: print/cups/patches: Tag: OPENBSD_5_6 patch-backend_usb-libusb_c Log message: Fix USB printing. CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/11 03:58:34 Modified files: misc/mc : Makefile Log message: depend on libssh2 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/11 04:24:38 Modified files: devel/cmake : Makefile cmake.port.mk distinfo devel/cmake/patches: patch-CMakeLists_txt patch-Modules_Compiler_GNU_cmake patch-Modules_FindJNI_cmake patch-Modules_FindJava_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_FindSDL_cmake patch-Modules_FindTCL_cmake patch-Modules_FindTclStub_cmake patch-Modules_FindTclsh_cmake patch-Modules_FindWish_cmake patch-Modules_FindXMLRPC_cmake patch-Modules_GNUInstallDirs_cmake patch-Modules_Platform_UnixPaths_cmake patch-Modules_Qt4ConfigDependentSettings_cmake patch-Source_CursesDialog_CMakeLists_txt patch-Source_cmComputeLinkInformation_cxx patch-Source_cmInstallCommand_cxx patch-Source_cmTarget_cxx patch-Source_kwsys_SystemTools_cxx patch-Tests_CMakeLists_txt patch-Tests_CMakeTests_ModuleNoticesTest_cmake_in patch-bootstrap devel/cmake/pkg: PLIST Added files: devel/cmake/patches: patch-Help_index_rst patch-Modules_FindLua_cmake Removed files: devel/cmake/files: FindBacktrace.cmake FindLuaInterp.cmake FindLuaLibs.cmake devel/cmake/patches: patch-Modules_FindFreetype_cmake patch-Modules_FindRuby_cmake Log message: Update to cmake-3.0.1 Tested in a bulk build by landry@ OK landry@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/11 04:27:17 Modified files: x11/awesome : Makefile x11/awesome/patches: patch-awesomeConfig_cmake Log message: Unbreak build with cmake-3.0.1 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/11 04:33:44 Modified files: infrastructure/db: systrace.filter Log message: permit native-dup3: unbreak systraced build of gstreamer1. from patrick keshishian ok sthen@ CVSROOT: /cvs Module name: src Changes by: mpi@cvs.openbsd.org 2014/09/11 05:14:36 Modified files: share/man/man4 : usb.4 Log message: typo, from Daniel Jakots CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/11 08:02:55 Modified files: devel/codeblocks: Makefile distinfo devel/codeblocks/patches: patch-src_base_tinyxml_Makefile_in patch-src_plugins_compilergcc_compilergcc_cpp patch-src_src_appglobals_cpp patch-src_src_prefix_cpp devel/codeblocks/pkg: PLIST Added files: devel/codeblocks/patches: patch-configure Removed files: devel/codeblocks/patches: patch-src_CodeBlocks-unix_cbp patch-src_include_scripting_sqplus_sqplus_h patch-src_plugins_contrib_help_plugin_man2html_cpp Log message: Update to codeblocks-13.12. CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/09/11 08:43:05 Modified files: www/wordpress : Makefile distinfo www/wordpress/pkg: PLIST Log message: Update for Wordpress to 4.0 http://codex.wordpress.org/Version_4.0 OK kili@ kirby@ CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/11 08:45:13 Modified files: devel/cmake/patches: patch-Modules_FindJNI_cmake patch-Modules_FindJava_cmake patch-Modules_FindSDL_cmake patch-Modules_GNUInstallDirs_cmake patch-Source_kwsys_SystemTools_cxx patch-Tests_CMakeLists_txt patch-Tests_RuntimePath_CMakeLists_txt Log message: cleanup comments; zap a couple of now meaningless comments related to java 1.6 CVSROOT: /cvs Module name: ports Changes by: gonzalo@cvs.openbsd.org 2014/09/11 08:47:20 Modified files: net/haproxy : Makefile distinfo net/haproxy/patches: patch-doc_haproxy_1 Added files: net/haproxy/patches: patch-Makefile Removed files: net/haproxy/patches: patch-Makefile_bsd Log message: Update for HAproxy to 1.5.3: - DOC: fix typo in Unix Socket commands - BUG/MEDIUM: connection: fix memory corruption when building a proxy v2 header - BUG/MEDIUM: ssl: Fix a memory leak in DHE key exchange - DOC: mention that Squid correctly responds 400 to PPv2 header - BUG/MINOR: http: base32+src should use the big endian version of base32 - BUG/MEDIUM: connection: fix proxy v2 header again! Now use GMAKE. Ok benoit@ CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/11 10:06:26 Modified files: app/cwm : kbfunc.c Log message: Remove incorrect cast in kbfunc_exec. In kbfunc_ssh, reverse logic on truncation check so it's obvious. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/09/11 10:59:50 Modified files: distrib/sets : makeetcset Log message: Install files that moved from etc to base during "make build" to unbreak updating from src. OK ajacoutot@ CVSROOT: /cvs Module name: www Changes by: giovanni@cvs.openbsd.org 2014/09/11 11:37:00 Modified files: . : plus56.html Log message: typo in traceroute(8) CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/11 11:54:13 Modified files: devel/llvm : Makefile devel/llvm/patches: patch-lib_Target_PowerPC_PPCISelDAGToDAG_cpp Added files: devel/llvm/patches: patch-include_llvm_Support_ELF_h patch-lib_Object_ELF_cpp patch-lib_Target_PowerPC_InstPrinter_PPCInstPrinter_cpp patch-lib_Target_PowerPC_MCTargetDesc_PPCELFObjectWriter_cpp patch-lib_Target_PowerPC_PPCAsmPrinter_cpp patch-lib_Target_PowerPC_PPCFrameLowering_cpp patch-lib_Target_PowerPC_PPCFrameLowering_h patch-lib_Target_PowerPC_PPCISelLowering_cpp patch-lib_Target_PowerPC_PPCISelLowering_h patch-lib_Target_PowerPC_PPCInstrInfo_td patch-lib_Target_PowerPC_PPCMCInstLower_cpp patch-lib_Target_PowerPC_PPCMachineFunctionInfo_cpp patch-lib_Target_PowerPC_PPCMachineFunctionInfo_h patch-lib_Target_PowerPC_PPCRegisterInfo_cpp patch-lib_Target_PowerPC_PPCSubtarget_h patch-lib_Target_PowerPC_PPC_h Log message: r213427 [PowerPC] 32-bit ELF PIC support r213899 Don't use 128bit functions on PPC32. This adds initial support for PPC32 ELF PIC (Position Independent Code; the -fPIC variety), thus rectifying a long-standing deficiency in the PowerPC backend. r213960 [PowerPC] Support TLS on PPC32/ELF CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/11 11:59:51 Modified files: devel/llvm : Makefile Added files: devel/llvm/patches: patch-lib_Target_PowerPC_PPCInstrInfo_cpp patch-lib_Target_PowerPC_PPCInstrInfo_h patch-lib_Target_Sparc_SparcInstrInfo_cpp patch-lib_Target_Sparc_SparcInstrInfo_h Log message: r215238 / r217611 Provide implementations of getNoopForMachoTarget for PowerPC / SPARC. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/11 12:00:45 Modified files: net/curl : Makefile distinfo Log message: Security update to 7.38.0. Fixes CVE-2014-3613 (libcurl cookie leak with IP address as domain) CVE-2014-3620 (libcurl cookie leak for TLDs) Also switch to .lzma distfile. CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/11 13:04:53 Modified files: www/chromium : Makefile distinfo www/chromium/patches: patch-base_base_gypi patch-base_posix_unix_domain_socket_linux_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_chromium_strings_grd patch-chrome_app_google_chrome_strings_grd patch-chrome_app_theme_theme_resources_grd patch-chrome_browser_about_flags_cc patch-chrome_browser_browser_process_impl_cc patch-chrome_browser_browser_resources_grd 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_extensions_api_serial_serial_api_cc patch-chrome_browser_first_run_upgrade_util_linux_cc patch-chrome_browser_memory_details_cc patch-chrome_browser_net_cookie_store_util_cc patch-chrome_browser_renderer_preferences_util_cc patch-chrome_browser_sync_profile_sync_components_factory_impl_cc patch-chrome_browser_ui_aura_chrome_browser_main_extra_parts_aura_cc patch-chrome_browser_ui_browser_command_controller_cc patch-chrome_browser_ui_browser_view_prefs_cc patch-chrome_browser_ui_panels_panel_manager_cc patch-chrome_browser_ui_startup_startup_browser_creator_cc patch-chrome_browser_ui_toolbar_wrench_menu_model_cc patch-chrome_browser_ui_views_accelerator_table_cc patch-chrome_browser_ui_views_apps_chrome_native_app_window_views_cc patch-chrome_browser_ui_views_chrome_views_delegate_cc patch-chrome_browser_ui_views_chrome_views_delegate_h patch-chrome_browser_ui_views_frame_browser_frame_cc patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_cc patch-chrome_browser_ui_views_message_center_message_center_widget_delegate_cc patch-chrome_browser_ui_views_tabs_tab_drag_controller_cc patch-chrome_browser_ui_views_tabs_tab_strip_cc patch-chrome_browser_ui_views_toolbar_toolbar_view_cc patch-chrome_browser_ui_webui_about_ui_cc patch-chrome_browser_ui_webui_options_browser_options_handler_cc patch-chrome_browser_web_applications_web_app_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_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_api_gyp patch-chrome_common_pref_names_cc patch-chrome_common_pref_names_h patch-components_policy_resources_policy_templates_json patch-components_usb_service_usb_context_cc patch-content_app_content_main_runner_cc patch-content_browser_browser_main_loop_cc patch-content_browser_child_process_launcher_cc patch-content_browser_download_base_file_cc patch-content_browser_renderer_host_render_widget_host_view_aura_cc patch-content_content_browser_gypi patch-content_content_common_gypi patch-content_renderer_renderer_main_platform_delegate_linux_cc patch-content_renderer_renderer_webkitplatformsupport_impl_cc patch-device_hid_hid_gyp patch-device_serial_serial_gyp patch-media_audio_openbsd_audio_manager_openbsd_cc patch-media_media_gyp patch-net_base_network_change_notifier_cc patch-net_net_gypi patch-printing_backend_cups_helper_cc patch-printing_printing_gyp patch-remoting_remoting_host_gypi patch-skia_skia_chrome_gypi patch-third_party_WebKit_Source_config_h patch-third_party_WebKit_Source_core_core_gyp patch-third_party_WebKit_Source_platform_blink_platform_gyp patch-third_party_WebKit_Source_platform_heap_ThreadState_cpp 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_libjingle_libjingle_gyp patch-third_party_libjingle_source_talk_base_cpumonitor_cc patch-tools_gyp_pylib_gyp_generator_ninja_py patch-ui_app_list_app_list_constants_cc patch-ui_app_list_app_list_constants_h 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_ime_input_method_initializer_cc patch-ui_base_resource_resource_bundle_cc patch-ui_base_webui_web_ui_util_cc patch-ui_events_event_switches_cc patch-ui_events_event_switches_h patch-ui_gfx_canvas_skia_cc patch-ui_gl_gl_gyp patch-ui_message_center_views_message_center_button_bar_cc patch-ui_message_center_views_message_center_button_bar_h patch-ui_message_center_views_notification_view_cc patch-ui_shell_dialogs_select_file_dialog_cc patch-ui_views_bubble_bubble_delegate_cc patch-ui_views_controls_button_label_button_cc patch-ui_views_controls_menu_menu_scroll_view_container_cc patch-ui_views_controls_textfield_textfield_cc patch-ui_views_views_delegate_h patch-ui_views_views_gyp patch-ui_views_window_dialog_delegate_cc patch-v8_src_globals_h www/chromium/pkg: PLIST Added files: www/chromium/patches: patch-chrome_app_resources_locale_settings_grd patch-chrome_chrome_exe_gypi patch-chrome_utility_media_galleries_image_metadata_extractor_cc patch-components_usb_service_usb_error_cc patch-content_browser_renderer_host_p2p_socket_dispatcher_host_h patch-content_content_renderer_gypi patch-media_video_capture_linux_video_capture_device_factory_linux_cc patch-media_video_capture_video_capture_device_factory_cc patch-pdf_pdf_gyp patch-third_party_pdfium_build_standalone_gypi patch-third_party_pdfium_core_include_fxcrt_fx_system_h patch-third_party_pdfium_core_src_fxge_ge_fx_ge_linux_cpp patch-third_party_pdfium_fpdfsdk_src_javascript_PublicMethods_cpp patch-third_party_pdfium_fpdfsdk_src_jsapi_fxjs_v8_cpp patch-third_party_pdfium_pdfium_gyp 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_stringutils_h patch-third_party_webrtc_build_common_gypi patch-ui_strings_app_locale_settings_grd Removed files: www/chromium/patches: patch-chrome_app_generated_resources_grd patch-content_common_gpu_gpu_memory_manager_cc patch-media_video_capture_linux_video_capture_device_linux_cc patch-third_party_ffmpeg_libavcodec_x86_h264_i386_h patch-ui_base_strings_app_locale_settings_grd Log message: update to 37.0.2062.120 CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/11 13:09:01 Modified files: lang/php/5.3 : Makefile distinfo lang/php/5.3/patches: patch-sapi_fpm_php-fpm_conf_in Log message: update to 5.3.29; includes security fix for CVE-2014-3981 and CVE-2014-3515 CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/11 14:32:16 Modified files: sys/arch/i386/include: atomic.h Log message: mplement membar(9) API for i386. ok matthew@, guenther@ CVSROOT: /cvs Module name: www Changes by: krw@cvs.openbsd.org 2014/09/11 15:38:10 Modified files: . : 56.html Log message: Mention a few installer improvements in 5.6. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/11 15:57:00 Modified files: x11/nx/opennx : Makefile distinfo x11/nx/opennx/patches: patch-Makefile_in patch-opennxApp_cpp Log message: update to opennx-0.16.0.729 CVSROOT: /cvs Module name: www Changes by: krw@cvs.openbsd.org 2014/09/11 16:01:45 Modified files: . : 56.html Log message: Mention some 4K-sector improvements in 5.6. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/11 17:52:47 Modified files: usr.bin/mandoc : mandoc.h mdoc_validate.c read.c Log message: warn about botched .Xr ordering and punctuation below SEE ALSO; inspired by mdoclint(1) CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/11 17:57:33 Modified files: usr.sbin/pkg_add: pkg_sign.1 Log message: fix the only .Xr ordering and punctuation issue i could find with the new MANDOCERR_XR_* warnings in the whole tree CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/11 18:53:21 Modified files: usr.bin/mandoc : mandoc.h mdoc_validate.c read.c Log message: warn about commas in function arguments; inspired by mdoclint(1) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/12 00:24:01 Modified files: misc/redshift : Makefile Log message: Missing dependency. breakage reported by stsp@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/12 00:34:14 Modified files: sys/dev/ic : nvme.c Log message: fix some format string issues CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/12 00:37:12 Modified files: games/childsplay: Makefile distinfo Log message: Update to childsplay-2.6.5. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/12 00:48:25 Modified files: sys/dev/pci : pcidevs Log message: add Intel SSD DC P3700/P3600/P3500 CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/12 00:49:23 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/12 00:54:38 Modified files: sys/dev/ic : nvme.c Log message: dont leak a ccb in identify CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/12 01:16:05 Modified files: sysutils/salt : Makefile sysutils/salt/files: openbsd_sysctl.py Log message: Don't use _formatfor(). CVSROOT: /cvs Module name: ports Changes by: kili@cvs.openbsd.org 2014/09/12 01:44:22 Modified files: devel/codeblocks: Makefile Log message: This needs devel/boost as BUILD_DEPENDS. ok aja@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/12 02:27:43 Modified files: devel/py-virtualenv: Makefile distinfo devel/py-virtualenv/pkg: PLIST Log message: Update py-virtualenv to 1.11.6, from frantisek holop CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/12 02:36:12 Modified files: devel/cmake : Makefile cmake.port.mk distinfo Added files: devel/cmake/patches: patch-Source_cmGlobalNinjaGenerator_cxx patch-Source_cmGlobalNinjaGenerator_h patch-Source_cmNinjaNormalTargetGenerator_cxx patch-Source_cmNinjaTargetGenerator_cxx Log message: Bugfixing update to cmake-3.0.2 Use Ninja-1.5's console pool to have visible output during long-running tasks which produce status updates on the console (such as test suites) CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/12 03:52:45 Modified files: sys/arch/i386/include: cpu.h sys/arch/amd64/include: cpu.h sys/arch/i386/i386: mp_setperf.c sys/arch/amd64/amd64: mp_setperf.c Log message: Remove the code that attempts to synchronize P-state transitions between CPUs. Spinning inside an IPI handler is generally a bad idea as it is very hard to avoid deadlocks. As far as I can tell the synchronization isn't necessary. Multi-core CPUs have hardware mechanisms to do the appropropriate coordination between cores and coordination between sockets isn't necessary either. This seems to fix the various hangs and suspend/resume failures that people have been seeing when running apmd -A or apmd -C. Tested by many. ok kspillner@, mpi@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/12 05:09:57 Modified files: x11/gnome/empathy: Makefile distinfo Log message: update to empathy-3.12.6 CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2014/09/12 05:53:57 Modified files: sys/dev/pci : pcidevs_data.h Log message: Something went amiss in last pcidevs_data.h generation/commit. Regen and unbreak kernel compiles. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/12 06:39:47 Modified files: devel/llvm : Makefile Added files: devel/llvm/patches: patch-tools_clang_lib_CodeGen_CGDebugInfo_cpp Log message: r205331 Debug info: fix a crash when emitting IndirectFieldDecls, which were previously not handled at all. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/12 06:47:24 Modified files: lang/clang : clang.port.mk Log message: bump revision. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/12 07:24:30 Modified files: security/gpgme : Makefile Added files: security/gpgme/patches: patch-src_engine-gpgsm_c patch-src_engine-uiserver_c Log message: Security fix for CVE-2014-35640 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/12 07:25:33 Modified files: security/gpgme : Tag: OPENBSD_5_6 Makefile Added files: security/gpgme/patches: Tag: OPENBSD_5_6 patch-src_engine-gpgsm_c patch-src_engine-uiserver_c Log message: Security fix for CVE-2014-35640 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/12 07:26:57 Modified files: security/gpgme/patches: patch-src_engine-gpgsm_c patch-src_engine-uiserver_c Log message: fix CVE number CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/12 07:27:13 Modified files: security/gpgme/patches: Tag: OPENBSD_5_6 patch-src_engine-gpgsm_c patch-src_engine-uiserver_c Log message: fix CVE number CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/12 07:28:47 Modified files: security/gpgme : Tag: OPENBSD_5_5 Makefile Added files: security/gpgme/patches: Tag: OPENBSD_5_5 patch-src_engine-gpgsm_c patch-src_engine-uiserver_c Log message: Security fix for CVE-2014-3564 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/12 08:22:53 Modified files: security/yubikey-personalization-gui: Makefile distinfo Log message: update to yubikey-personalization-gui-3.1.15 CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2014/09/12 10:02:40 Modified files: sys/net80211 : ieee80211_ioctl.c ieee80211_node.c ieee80211_node.h Log message: Remove cached 802.11 nodes in IEEE80211_STA_CACHE state (these are nodes which have been seen but which haven't otherwise interacted with us), fixing a problem where old cached nodes are seen when doing a scan. From Marcin Piotr Pawlowski, feedback stsp@ ok kspillner@ dcoppa@ CVSROOT: /cvs Module name: ports Changes by: giovanni@cvs.openbsd.org 2014/09/12 11:14:12 Modified files: mail/p5-Mail-SPF: Makefile distinfo mail/p5-Mail-SPF/patches: patch-Build_PL Log message: bugfix update to 2.9.0 CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/12 11:18:44 Modified files: net/transmission: Makefile Log message: Enable the uTP support. According to bug reports I can find this was fixed for strict alignnment archs around 2.74. Tested on sparc64 by me and naddy@. ok naddy@ CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/12 12:42:37 Modified files: lang/php/5.3 : Tag: OPENBSD_5_5 Makefile distinfo Log message: MFC PHP security update to 5.3.29; includes security fix for CVE-2014-3981 and CVE-2014-3515 ok jasper@ CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/12 12:42:54 Modified files: lang/php/5.3 : Tag: OPENBSD_5_6 Makefile distinfo lang/php/5.3/patches: Tag: OPENBSD_5_6 patch-sapi_fpm_php-fpm_conf_in Log message: MFC PHP security update to 5.3.29; includes security fix for CVE-2014-3981 and CVE-2014-3515 ok jasper@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/12 14:38:07 Modified files: www/tt-rss : Makefile www/tt-rss/pkg : README Log message: Add a note about cleaning the caches when encountering issues after an upgrade. CVSROOT: /cvs Module name: ports Changes by: rpe@cvs.openbsd.org 2014/09/12 14:39:05 Modified files: security/py-paramiko: Makefile distinfo security/py-paramiko/pkg: PLIST Log message: Update py-paramiko to 1.14.1 with feedback from sthen@ OK aja@ benoit@ (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/12 14:41:53 Modified files: devel/py-six : Makefile distinfo Log message: Update to 1.8.0 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/12 14:46:46 Modified files: sysutils/ansible: Makefile Added files: sysutils/ansible/patches: patch-library_packaging_openbsd_pkg Log message: Use -z when invoking pkg_add in openbsd_pkg module, so that one can use for example php-fpm-5.4* and ensure the correct version is installed. Previously, one had to specify the exact version, or ansible would fail since there were alternatives. https://github.com/ansible/ansible/issues/8990 ok rpe@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/12 16:04:18 Modified files: lib/libc/arch/sparc64/fpu: fpu_sqrt.c Log message: Fix some bugs in the _Qp_sqrt implementation that would limit the accuracy of the result in many cases. From FreeBSD allbeit with some changes to keep the coding style consistent. This fixes the asinhl(4) issue reported by dickman@ on tech@. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/12 16:07:24 Modified files: lib/libm : Makefile Added files: lib/libm/arch/sparc64: e_sqrtl.c Log message: Provide a sparc64 version of sqrtl(3) that simply calls _Qp_sqrt. The generic sqrtl(3) is not nearly accurate enough for quad-precision floating point. CVSROOT: /cvs Module name: www Changes by: krw@cvs.openbsd.org 2014/09/12 17:15:53 Modified files: . : 56.html Log message: Mention disklabel(8) enhancement, MSDOS timestamp fix in 5.6. CVSROOT: /cvs Module name: www Changes by: krw@cvs.openbsd.org 2014/09/12 17:37:03 Modified files: . : 56.html Log message: Mention msgbuf_write(3) fixes in 5.6. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/12 19:09:31 Modified files: share/man/man3 : queue.3 Log message: Retire the CIRCLEQ_* and *_END macros here, noting why they were deprecated. kick started by Gre'goire Duche^ne ok millert@ CVSROOT: /cvs Module name: ports Changes by: bentley@cvs.openbsd.org 2014/09/12 22:56:28 Modified files: audio/portaudio-svn: Makefile distinfo audio/portaudio-svn/patches: patch-configure_in audio/portaudio-svn/pkg: PLIST Log message: Update to portaudio-svn-1919. ok brad@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/12 23:00:05 Modified files: graphics/colord: Makefile distinfo Log message: Update to colord-1.2.3. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2014/09/12 23:05:51 Modified files: games/openxcom/patches: patch-CMakeLists_txt Log message: patch was committed upstream CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/12 23:09:03 Modified files: sysutils/salt : Makefile Log message: Committed upstream. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/12 23:11:27 Modified files: sys/dev/pci : pcidevs Log message: Add HP Gen9 Smart Array/Smart HBA devices and some devices from submitted dmesgs. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/12 23:12:43 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/12 23:17:48 Modified files: share/man/man4 : ciss.4 sys/dev/pci : ciss_pci.c Log message: Add HP Gen9 Smart Array/Smart HBA devices. Untested, but there doesn't seem to have been any changes to the firmware interface so these should work without additional changes, as was the case with the last few generations. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/13 00:32:13 Modified files: share/man/man3 : Makefile Log message: zap MLINK for *Q_END and CIRCLEQ*; CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/13 01:47:02 Modified files: sysutils/mcollective-plugins/puppet-agent: Makefile distinfo Log message: update to mcollective-puppet-agent-1.8.1 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 02:05:35 Removed files: www/bacula-web : Makefile distinfo www/bacula-web/patches: patch-application_config_config_php_sample www/bacula-web/pkg: DESCR PLIST README Log message: Drop bacula-web; there is no added value in packaging this; side note: there's a nice other webapp that people may want to try: baculastatus. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 02:05:54 Modified files: www : Makefile Log message: -bacula-web CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 02:06:11 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: Register bacula-web removal. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/13 02:14:50 Modified files: distrib/sets/lists/comp: md.amd64 md.i386 mi Log message: cpuid.h is md not mi CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2014/09/13 02:18:23 Modified files: games/openxcom : Makefile games/openxcom/patches: patch-src_Engine_Zoom_cpp Removed files: games/openxcom/files: cpuid.h Log message: use the system cpuid.h CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/13 03:02:19 Modified files: distrib/sets/lists/base: md.alpha md.armish md.armv7 md.aviion md.hppa md.hppa64 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus Log message: remove invalid cpuid.ph entries CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/13 03:34:48 Modified files: misc/rlwrap : Makefile distinfo misc/rlwrap/patches: patch-Makefile_in patch-filters_Makefile_in Log message: update to rlwrap-0.41 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 04:08:43 Log message: Import qt4-qtsolutions-singleinstance-20110722 The QtSingleApplication component provides support for applications that can be only started once per user. ok jasper@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140913 N ports/devel/qt4-qtsolutions-singleinstance/distinfo N ports/devel/qt4-qtsolutions-singleinstance/Makefile N ports/devel/qt4-qtsolutions-singleinstance/pkg/DESCR N ports/devel/qt4-qtsolutions-singleinstance/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 04:09:18 Modified files: devel : Makefile Log message: +qt4-qtsolutions-singleinstance CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 04:10:24 Log message: Import lumina-0.6.2.1409847349 Lumina-DE is a lightweight, BSD licensed desktop environment. ok jasper@ Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20140913 N ports/x11/lumina/distinfo N ports/x11/lumina/Makefile N ports/x11/lumina/patches/patch-libLumina_LuminaXDG_cpp N ports/x11/lumina/patches/patch-lumina-config_mainUI_cpp N ports/x11/lumina/patches/patch-lumina-desktop_SettingsMenu_cpp N ports/x11/lumina/patches/patch-libLumina_libLumina_pro N ports/x11/lumina/pkg/DESCR N ports/x11/lumina/pkg/PLIST N ports/x11/lumina/files/LuminaOS-OpenBSD.cpp No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 04:10:54 Modified files: x11 : Makefile Log message: +lumina CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 06:00:52 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: In PKG mode, cope with non-default PREFIX (e.g. /var/www/...). CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/13 07:04:09 Modified files: editors/dhex : Makefile distinfo Log message: Update to 0.68 ok Thanasoulas Spiros (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/13 07:11:17 Modified files: archivers/quazip: Makefile distinfo Log message: Update to 0.7 CVSROOT: /cvs Module name: www Changes by: brad@cvs.openbsd.org 2014/09/13 08:02:19 Modified files: faq : current.html Log message: Mention removal of procfs. From Mark Patruck CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/13 08:05:25 Modified files: net/epic4 : Makefile distinfo net/epic4/patches: patch-Makefile_in patch-source_irc_c net/epic4/pkg : PLIST Log message: Update to epic4 2.10.5. ok MAINTAINER CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/13 08:30:53 Modified files: games/manaplus : Makefile distinfo Log message: Update to 1.4.9.14 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/13 09:02:54 Modified files: net/curl : Tag: OPENBSD_5_5 Makefile Added files: net/curl/patches: Tag: OPENBSD_5_5 patch-lib_cookie_c patch-tests_data_test1105 patch-tests_data_test31 patch-tests_data_test61 patch-tests_data_test8 Log message: Security fixes for CVE-2014-3613 (libcurl cookie leak with IP address as domain) CVE-2014-3620 (libcurl cookie leak for TLDs) CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/13 09:09:24 Modified files: infrastructure/mk: bsd.port.mk net/curl : Makefile Log message: add default support for extracting *.tar.lzma; ok juanfra@ CVSROOT: /cvs Module name: src Changes by: naddy@cvs.openbsd.org 2014/09/13 09:13:44 Modified files: share/man/man5 : bsd.port.mk.5 Log message: document default EXTRACT_CASES support for *.tar.lzma (reminded by juanfra@) and add more bzip2 cases CVSROOT: /cvs Module name: src Changes by: doug@cvs.openbsd.org 2014/09/13 10:06:37 Modified files: bin/md5 : md5.c lib/libevent : event-internal.h sbin/pfctl : parse.y pfctl_optimize.c sys/arch/alpha/dev: bus_dma.c sys/arch/arm/arm: bus_dma.c sys/arch/aviion/aviion: bus_dma.c sys/arch/loongson/loongson: bus_dma.c sys/arch/octeon/octeon: bus_dma.c sys/arch/sgi/sgi: bus_dma.c sys/arch/vax/vax: bus_dma.c sys/dev : softraid.c softraid_crypto.c sys/dev/ic : if_wi_hostap.c qla.c sys/dev/pci : maestro.c pci.c qle.c sys/dev/pci/drm: drm_drv.c drm_irq.c sys/kern : spec_vnops.c subr_extent.c sysv_sem.c vfs_cache.c vfs_subr.c sys/scsi : ses.c usr.bin/cdio : rip.c usr.sbin/ftp-proxy: ftp-proxy.c usr.sbin/ldapd : namespace.c usr.sbin/ldomctl: config.c mdstore.c Log message: Replace all queue *_END macro calls except CIRCLEQ_END with NULL. CIRCLEQ_* is deprecated and not called in the tree. The other queue types have *_END macros which were added for symmetry with CIRCLEQ_END. They are defined as NULL. There's no reason to keep the other *_END macro calls. ok millert@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 10:23:05 Modified files: devel/ptlib : Makefile Added files: devel/ptlib/patches: patch-Makefile Log message: Do not run configure twice; spotted by espie@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 10:28:47 Modified files: infrastructure/mk: gnu.port.mk Log message: When using GNU configure, always run with --disable-gtk-doc unless textproc/gtk-doc is in BUILD_DEPENDS and force ac_cv_path_GTKDOC_* to null. Even when --disable-gtk-doc is passed, if the gtk-doc tools are present at configure time, they will be run (at a time where the gtk-doc package may have been removed; for e.g. during a bulk). This is what we've been doing under x11/gnome for a while now. sthen@ espie@ and jasper@ agree CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 10:29:39 Modified files: x11/gnome : gnome.port.mk Log message: MODGNOME_TOOLS=gtk-doc is gone now CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 10:30:05 Modified files: share/man/man5 : port-modules.5 Log message: Tweak after recent gnome MODULE change. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 10:36:54 Modified files: audio/libcanberra: Makefile audio/libgpod : Makefile devel/harfbuzz : Makefile geo/geoclue : Makefile graphics/cairo : Makefile graphics/colord: Makefile graphics/colord-gtk: Makefile graphics/gegl : Makefile graphics/gimp/stable: Makefile inputmethods/ibus: Makefile multimedia/gstreamer-0.10: Makefile.inc multimedia/gstreamer1: Makefile.inc multimedia/ogmrip: Makefile net/bro : Makefile net/libnice : Makefile net/libpcapnav : Makefile net/loudmouth : Makefile net/telepathy : Makefile.inc print/poppler : Makefile productivity/rubrica2: Makefile security/gnutls: Makefile security/libtasn1: Makefile security/p11-kit: Makefile sysutils/polkit: Makefile sysutils/upower: Makefile textproc/gtkspell: Makefile textproc/ots : Makefile textproc/rasqal: Makefile textproc/redland: Makefile x11/dbus-glib : Makefile x11/libfm : Makefile x11/menu-cache : Makefile x11/spice-gtk : Makefile x11/xfce4/libxfcegui4: Makefile x11/xfce4/tumbler: Makefile Log message: --disable-gtk-doc is handled by the infrastructure now. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 11:17:30 Modified files: devel/qt4-qtsolutions-singleinstance: Makefile devel/qt4-qtsolutions-singleinstance/pkg: DESCR Log message: fmt(1) CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/13 11:33:21 Modified files: share/man/man4 : bge.4 lge.4 msk.4 nge.4 re.4 sk.4 ti.4 Log message: Don't say or imply that using ifconfig has anything to do with whether the hardware can transmit or receive jumbo frames. CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/13 12:09:22 Modified files: audio/squeezecenter: Makefile benchmarks/sysbench: Makefile databases : Makefile databases/dbic++: Makefile databases/hs-HDBC-mysql: Makefile databases/libdbi-drivers: Makefile databases/luadbi: Makefile databases/mydumper: Makefile databases/mysqlcc: Makefile databases/p5-Class-DBI-mysql: Makefile databases/p5-DBD-mysql: Makefile databases/py-mysql: Makefile databases/ruby-do_mysql: Makefile databases/ruby-mysql: Makefile databases/ruby-mysql2: Makefile databases/ruby-swift-db-mysql: Makefile devel/mysql++ : Makefile devel/quirks : Makefile devel/quirks/files: Quirks.pm editors/calligra: Makefile games/rftg : Makefile graphics/digikam-kde4: Makefile lang/io : Makefile lang/php : Makefile.inc lang/php/5.3 : Makefile lang/php/5.4 : Makefile lang/php/5.5 : Makefile mail/bmf : Makefile mail/courier-authlib: Makefile mail/dovecot : Makefile mail/dspam : Makefile mail/exim : Makefile mail/perdition : Makefile mail/postfix : Makefile.inc mail/postfix/snapshot: Makefile mail/postfix/stable: Makefile mail/zarafa/zarafa: Makefile net/freeradius : Makefile net/gnugk : Makefile net/icinga/core2: Makefile net/jabberd : Makefile net/monitoring-plugins: Makefile net/nedi : Makefile net/pmacct : Makefile net/poco : Makefile net/powerdns : Makefile net/pure-ftpd : Makefile net/rtg : Makefile net/zabbix : Makefile productivity/akonadi: Makefile security/cvechecker: Makefile security/cyrus-sasl2: Makefile security/hydra : Makefile security/samhain: Makefile sysutils/bacula: Makefile sysutils/cfengine: Makefile sysutils/collectd: Makefile sysutils/rsyslog: Makefile telephony/asterisk: Makefile telephony/kamailio: Makefile tests/portbump/t2: Makefile Makefile.inc textproc/redland: Makefile textproc/sphinx: Makefile www/cherokee : Makefile www/lighttpd : Makefile www/mod_auth_mysql: Makefile www/mod_log_sql: Makefile www/mod_mp3 : Makefile www/sope : Makefile www/squidguard : Makefile x11/gnome/libgda: Makefile x11/gnustep/sqlclient: Makefile x11/qt3 : Makefile x11/qt4 : Makefile Log message: Switch from using MySQL to using MariaDB attempt #2. MariaDB is a drop-in replacement. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/13 13:57:07 Modified files: net/curl : Tag: OPENBSD_5_6 Makefile Added files: net/curl/patches: Tag: OPENBSD_5_6 patch-lib_cookie_c patch-tests_data_test1105 patch-tests_data_test31 patch-tests_data_test61 patch-tests_data_test8 Log message: Security fixes for CVE-2014-3613 (libcurl cookie leak with IP address as domain) CVE-2014-3620 (libcurl cookie leak for TLDs) CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/13 14:10:12 Modified files: lib/libc/stdlib: strtoimax.c strtol.c strtoll.c strtoul.c strtoull.c strtoumax.c Log message: Make sure that the following functions return 0 and EINVAL as required by the C standard when called with an invalid base: strtoll(), strtoimax(), strtoul(), strtoull(), and strtoumax(). Same behaviour for strtoq() and strtouq() even though not standardized. No functional change in strtol(), it was the only one already correct. While here, simplify the conditional expression for checking the base and sync whitespace and comments among the six files. ok millert@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/13 14:40:20 Modified files: devel/nasm : Makefile distinfo Log message: Update to nasm 2.11.05. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/09/13 16:00:16 Modified files: archivers/lzip/clzip: Makefile distinfo Log message: Update to clzip-1.6 CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/09/13 16:03:49 Modified files: archivers/lzip/lzip: Makefile distinfo Log message: Update to lzip-1.16 CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/09/13 16:06:25 Modified files: archivers/lzip/lziprecover: Makefile distinfo Log message: Update to lziprecover-1.16 CVSROOT: /cvs Module name: ports Changes by: juanfra@cvs.openbsd.org 2014/09/13 16:12:40 Modified files: archivers/lzip/lzlib: Makefile distinfo archivers/lzip/lzlib/patches: patch-Makefile_in archivers/lzip/lzlib/pkg: PLIST Log message: Update to lzlib-1.6 CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2014/09/13 17:38:24 Modified files: regress/usr.sbin/syslogd: Makefile Proc.pm Syslogd.pm args-client-native.pl args-client-udp-nodns.pl args-client-udp.pl args-client-udp4-nodns.pl args-client-udp4.pl args-client-udp6-nodns.pl args-client-udp6.pl args-client-unix.pl args-localhost.pl args-maxhostlen.pl args-maxloghostlen.pl args-maxportlen.pl args-maxunix.pl args-only4.pl args-only6.pl args-proto-invalid.pl args-proto-udp.pl args-proto-udp4-host6.pl args-proto-udp4-only6.pl args-proto-udp4.pl args-proto-udp6-host4.pl args-proto-udp6-only4.pl args-proto-udp6.pl args-server-udp4.pl args-server-udp6.pl funcs.pl syslogd.pl Added files: regress/usr.sbin/syslogd: Syslogc.pm args-memory-clear.pl args-memory-flags.pl args-memory-list.pl args-memory-overflow-cont.pl args-memory-overflow-flags.pl args-memory-overflow.pl args-memory-read-clear.pl args-memory-read-cont.pl args-memory-read.pl Log message: Add tests for syslogd's memory buffer and read it with syslogc. CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/13 17:49:58 Modified files: share/man/man4 : stge.4 Log message: Don't bother mentioning an unimplemented feature in a BUGS section. CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/13 18:17:09 Modified files: share/man/man4 : bge.4 bnx.4 em.4 ixgb.4 lge.4 msk.4 nge.4 re.4 sk.4 ti.4 vge.4 Log message: - Don't capitalize jumbo. - Don't try to keep track of jumbo frame sizes in the pages. Users can use `ifconfig hwfeatures' to determine what the hardware supports. CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/09/13 22:58:42 Modified files: www/youtube-dl : Makefile distinfo www/youtube-dl/pkg: PLIST Log message: Update youtube-dl to 2014.09.12. Adds extractors for: - dbtv - hostingbulk - moevideo - nosvideo - vgtv Found out about the update through portroach thanks to jasper@! CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/13 23:58:07 Modified files: net/zabbix : Makefile net/zabbix/pkg : README-server security/cvechecker: Makefile security/cvechecker/pkg: README security/samhain: Makefile security/samhain/pkg: README-server sysutils/bacula: Makefile sysutils/bacula/pkg: README-server www/puppet-dashboard: Makefile www/puppet-dashboard/pkg: README www/statusnet : Makefile www/statusnet/pkg: README www/owncloud : Makefile www/owncloud/pkg: README Log message: MySQL -> MariaDB in READMEs. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/14 00:58:02 Modified files: x11/lumina : Makefile x11/lumina/patches: patch-libLumina_LuminaXDG_cpp patch-libLumina_libLumina_pro patch-lumina-config_mainUI_cpp patch-lumina-desktop_SettingsMenu_cpp Added files: x11/lumina/patches: patch-lumina-config_lumina-config_pro patch-lumina-desktop_lumina-desktop_pro patch-lumina-fm_lumina-fm_pro patch-lumina-open_lumina-open_pro patch-lumina-screenshot_lumina-screenshot_pro Log message: Fix path to lrelease. CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/09/14 03:38:32 Modified files: devel/udis86 : Makefile distinfo devel/udis86/pkg: PLIST Log message: Update udis86 to version 1.7.2 The manual changed format to HTML and luckly ajacoutot@ helped me make the transition without the use of patches, thanks! Found-by portroach from jasper@ Okay ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/14 03:43:49 Modified files: x11/gnome/librsvg: Makefile distinfo Log message: Update to librsvg-2.40.4. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2014/09/14 08:17:27 Modified files: sys/arch/amd64/amd64: bios.c cpu.c db_disasm.c db_interface.c db_memrw.c dkcsum.c est.c gdt.c i8259.c identcpu.c intr.c k1x-pstate.c lapic.c mem.c powernow-k8.c via.c sys/arch/i386/i386: apm.c bios.c cpu.c db_disasm.c db_interface.c db_memrw.c dkcsum.c esm.c est.c gdt.c k1x-pstate.c lapic.c longrun.c mem.c p4tcc.c powernow-k7.c powernow-k8.c powernow.c via.c sys/arch/i386/pci: ali1543.c elan520.c ichpcib.c piixpcib.c sys/compat/common: compat_dir.c sys/compat/linux: linux_file64.c linux_ioctl.c linux_ipc.c sys/crypto : criov.c crypto.c sys/ddb : db_access.c db_break.c db_elf.c db_examine.c db_expr.c db_input.c db_lex.c db_output.c db_print.c db_run.c db_sym.c db_trap.c db_variables.c db_watch.c db_write_cmd.c sys/dev : audio.c cninit.c cons.c midi.c radio.c softraid.c softraid_crypto.c softraid_raid0.c softraid_raid1.c softraid_raid5.c softraid_raid6.c video.c vscsi.c sys/dev/acpi : acpibat.c acpibtn.c acpicpu.c acpiec.c acpiprt.c acpipwrres.c acpisony.c acpithinkpad.c acpitoshiba.c dsdt.c sys/dev/ata : ata_wdc.c atascsi.c wd.c sys/dev/atapiscsi: atapiscsi.c sys/dev/cardbus: cardbus.c ehci_cardbus.c if_dc_cardbus.c if_xl_cardbus.c ohci_cardbus.c uhci_cardbus.c sys/dev/eisa : aha1742.c uha_eisa.c sys/dev/ic : acx.c adv.c adw.c aic6360.c aic79xx_openbsd.h aic7xxx_openbsd.h ami.c an.c bha.c bwi.c cac.c ciss.c com.c cy.c if_wi.c if_wi_hostap.c lpt.c malo.c mfi.c mpi.c ncr53c9x.c pckbc.c qla.c qlw.c sili.c twe.c uha.c wdc.c xl.c sys/dev/isa : ad1848.c aha.c aic_isa.c ess.c fd.c gscsio.c gus.c gus_isa.c gus_isapnp.c ics2101.c isadma.c mpu401.c mpu_isa.c mpu_isapnp.c pas.c pcppi.c sb.c sb_isa.c sb_isapnp.c sbdsp.c seagate.c spkr.c uha_isa.c wds.c wss.c wss_isa.c wss_isapnp.c ym.c ym_isapnp.c sys/dev/microcode/adw: adwmcode.c sys/dev/mii : eephy.c mii_physubr.c sys/dev/onewire: onewire.c owctr.c owid.c owsbm.c owtemp.c sys/dev/pci : glxpcib.c if_art.c if_lmc.c if_myx.c if_san_common.c if_san_obsd.c if_san_xilinx.c pci.c sys/dev/pci/bktr: bktr_audio.c bktr_tuner.c sys/dev/pcmcia : com_pcmcia.c if_malo.c wdc_pcmcia.c sys/dev/puc : com_puc.c sys/dev/sdmmc : sdmmc.c sdmmc_io.c sdmmc_scsi.c sys/dev/wscons : wsdisplay.c wsevent.c sys/isofs/cd9660: cd9660_node.c cd9660_util.c cd9660_vnops.c sys/kern : kern_lkm.c kern_lock.c kern_malloc.c kern_physio.c kern_sensors.c kern_tc.c kern_watchdog.c kern_xxx.c subr_autoconf.c subr_disk.c subr_evcount.c subr_extent.c subr_pool.c sysv_ipc.c tty_conf.c tty_endrun.c tty_msts.c tty_nmea.c uipc_domain.c uipc_mbuf.c uipc_mbuf2.c uipc_socket2.c vfs_cluster.c vfs_default.c sys/miscfs/deadfs: dead_vnops.c sys/miscfs/fifofs: fifo_vnops.c sys/miscfs/fuse: fusebuf.c sys/msdosfs : msdosfs_denode.c sys/net80211 : ieee80211.c ieee80211_crypto.c ieee80211_input.c ieee80211_ioctl.c ieee80211_node.c ieee80211_output.c ieee80211_pae_input.c ieee80211_pae_output.c ieee80211_proto.c sys/netinet : igmp.c ip_ether.c ip_gre.c ip_icmp.c ip_ipip.c ip_ipsp.c tcp_usrreq.c udp_usrreq.c sys/nfs : nfs_boot.c nfs_debug.c nfs_node.c nfs_srvcache.c nfs_subs.c nfs_vnops.c sys/ntfs : ntfs_ihash.c ntfs_subr.c sys/scsi : cd.c ch.c mpath.c mpath_emc.c mpath_hds.c mpath_rdac.c mpath_sym.c safte.c scsi_base.c sd.c ses.c st.c sys/ufs/ext2fs : ext2fs_alloc.c ext2fs_balloc.c ext2fs_readwrite.c sys/ufs/ffs : ffs_alloc.c ffs_vnops.c sys/ufs/ufs : ufs_dirhash.c ufs_ihash.c ufs_inode.c ufs_quota_stub.c ufs_vfsops.c sys/uvm : uvm_amap.c uvm_anon.c uvm_aobj.c uvm_device.c uvm_init.c uvm_io.c uvm_km.c uvm_object.c uvm_pager.c uvm_pdaemon.c uvm_pmemrange.c uvm_swap_encrypt.c uvm_user.c Log message: remove uneeded proc.h includes ok mpi@ kspillner@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/14 08:32:44 Modified files: lib/libc/stdlib: strtol.3 strtoul.3 Log message: Do not claim that empty numbers set EINVAL, our implementation doesn't. Mention that invalid bases do set EINVAL (as required by POSIX); this part of the change uses part of an earlier patch by millert@. Minor mdoc(7) cleanup and sync between the two pages while here. Feedback and ok jmc@ and millert@. CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/09/14 11:50:51 Modified files: faq : faq6.html Log message: updated. website no longer lists supported devices on popular platforms (yay!). While here, update a few other things -- modern hw is enumerated by order of bus probing, make it clear quirky ISA stuff is unusual. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/14 12:40:49 Modified files: sys/arch/sparc64/fpu: fpu_sqrt.c Log message: Fix some bugs in the fpu_sqrt implementation that would limit the accuracy of the result in many cases. From FreeBSD allbeit with some changes to keep the coding style consistent. CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/14 12:59:18 Modified files: sys/arch/hppa/conf: GENERIC sys/arch/macppc/conf: GENERIC RAMDISK sys/arch/sgi/conf: GENERIC-IP27 GENERIC-IP30 GENERIC-IP32 RAMDISK-IP27 RAMDISK-IP30 RAMDISK-IP32 Log message: Clean up isp(4) from kernel configs with the new drivers already added. The new drivers match at a higher priority. CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/14 13:02:43 Modified files: sys/arch/sparc64/conf: GENERIC RAMDISK Log message: Add the ne(4) NE2000 PCI frontend. ok kettenis@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/14 13:44:20 Modified files: usr.bin/mandoc : cgi.c man.cgi.8 Log message: Support backslash-escaping of white space in the query expression, to be more similar to apropos(1) called from the shell. Missing feature reported by Marcus MERIGHI on misc@. CVSROOT: /cvs Module name: ports Changes by: pirofti@cvs.openbsd.org 2014/09/14 14:38:04 Modified files: devel/udis86 : Makefile Log message: Forgot to bump the major in the shared library. Kindly reminded by sthen@, thanks! Okay sthen@ CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/09/14 15:01:52 Log message: Import multimedia/sfml, requested by and ok bcallah@ SFML is a portable and easy to use multimedia API written in C++. You can see it as a modern, object-oriented alternative to SDL. SFML is composed of several packages to perfectly suit your needs. You can use SFML as a minimal windowing system to interface with OpenGL, or as a fully-featured multimedia library for building games or interactive programs. Status: Vendor Tag: pascal Release Tags: pascal_20140914 N ports/multimedia/sfml/Makefile N ports/multimedia/sfml/distinfo N ports/multimedia/sfml/patches/patch-cmake_Config_cmake N ports/multimedia/sfml/patches/patch-include_SFML_Window_WindowHandle_hpp N ports/multimedia/sfml/patches/patch-include_SFML_Config_hpp N ports/multimedia/sfml/patches/patch-include_SFML_OpenGL_hpp N ports/multimedia/sfml/patches/patch-src_SFML_Window_Linux_JoystickImpl_hpp N ports/multimedia/sfml/patches/patch-src_SFML_Window_GlContext_cpp N ports/multimedia/sfml/patches/patch-src_SFML_Window_InputImpl_hpp N ports/multimedia/sfml/patches/patch-src_SFML_Window_JoystickImpl_hpp N ports/multimedia/sfml/patches/patch-src_SFML_Window_WindowImpl_cpp N ports/multimedia/sfml/patches/patch-src_SFML_System_CMakeLists_txt N ports/multimedia/sfml/patches/patch-src_SFML_Window_Linux_WindowImplX11_cpp N ports/multimedia/sfml/patches/patch-src_SFML_Window_CMakeLists_txt N ports/multimedia/sfml/pkg/DESCR N ports/multimedia/sfml/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2014/09/14 15:02:34 Modified files: multimedia : Makefile Log message: sync CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/14 16:44:47 Modified files: bin/dd : args.c Log message: Error out when negative values are given for sizes on the command line. Do not error out when the maximum permissible value is given, but only when it is exceeded. Patch from William Orr using feedback from tedu@. ok millert@ CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/14 17:05:05 Log message: Import editors/moe ok landry@ jturner@ GNU Moe is a powerful, 8-bit clean, console text editor for ISO-8859 and ASCII character encodings. It has a modeless, user-friendly interface, online help, multiple windows, unlimited undo/redo capability, unlimited line length, global search/replace (on all buffers at once), block operations, automatic indentation, word wrapping, filename completion, directory browser, duplicate removal from prompt histories, delimiter matching, etc. Moe tries to rationalize the keyboard commands. The Alt key is used for harmless commands like cursor movements and scrolling. The Control key is used for more "dangerous" commands like copying text blocks, deleting lines, or exiting. The Tab key is used for filename completion and also shows/hides the directory browser when moe asks for a filename to save or load. In any case, the unlimited undo/redo capability of moe makes very difficult to accidentally cause an irreparable damage to your files. Moe uses the function keys, so that the most frequent commands can be issued with only one finger. The function key F1 shows the online help, and F10 allows you to change the options. Status: Vendor Tag: bcallah Release Tags: bcallah_20140914 N ports/editors/moe/Makefile N ports/editors/moe/distinfo N ports/editors/moe/patches/patch-Makefile_in N ports/editors/moe/pkg/DESCR N ports/editors/moe/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/14 17:05:41 Modified files: editors : Makefile Log message: +moe CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/14 17:36:12 Modified files: graphics/birdfont: Makefile distinfo graphics/birdfont/patches: patch-dodo_py patch-install_py graphics/birdfont/pkg: PLIST Log message: Mostly bugfix update to 1.3 CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/14 23:51:24 Modified files: lib/libc/sys : sigaction.2 Log message: Mention that SIGTHR is both local and weird "seems fair" schwarze@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/15 00:03:39 Modified files: lib/libc/asr : getnetnamadr_async.c Log message: Use _PATH_NETWORKS for "/etc/networks" ok miod@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/15 00:12:19 Modified files: lib/libc/db/btree: bt_open.c lib/libc/db/hash: hash_page.c Log message: Pass O_CLOEXEC to open() or mkostemp() instead of setting FD_CLOEXEC afterwards ok miod@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/15 00:15:48 Modified files: lib/libc/asr : asr.c getaddrinfo_async.c gethostnamadr_async.c getnetnamadr_async.c lib/libc/gen : fstab.c getcap.c getgrent.c getgrouplist.c getttyent.c getusershell.c lib/libc/locale: setrunelocale.c lib/libc/net : ethers.c getnetent.c getprotoent.c getservent.c ruserok.c lib/libc/rpc : getrpcent.c Log message: When fopen()ing internal to libc (the API doesn't support the use of the resulting FILE *), then pass fopen() the 'e' mode letter to mark it close-on-exec. ok miod@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2014/09/15 00:18:36 Modified files: lib/libc/gen : signal.3 lib/libc/sys : sigaction.2 Log message: We missed a hyphen in 'async-signal-safe' Noted by Jean-Philippe Ouellet (jean-philippe (at) ouellet.biz) CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/15 00:29:56 Modified files: www/chromium : Makefile www/chromium/patches: patch-build_common_gypi Log message: use GPU accelerated cross process image transport on openbsd as well CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/15 01:06:29 Modified files: devel/vte3 : Makefile devel/vte3/pkg : PLIST Log message: define and use API_V to reduce future diffs CVSROOT: /cvs Module name: ports Changes by: jmatthew@cvs.openbsd.org 2014/09/15 01:14:21 Modified files: databases/riak : Makefile Log message: disable gtest usage so it doesn't break bulk builds, as reported by naddy and espie. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/15 01:17:50 Modified files: x11/remmina : Makefile Log message: fix lie in COMMENT CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/15 02:00:27 Modified files: usr.sbin/httpd : server_http.c Log message: Make the HTTP version mandatory and abort if it is missing in the request. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/15 02:05:08 Modified files: x11/gnome/calculator: Makefile distinfo Log message: update to gnome-calculator-3.12.4 CVSROOT: /cvs Module name: src Changes by: reyk@cvs.openbsd.org 2014/09/15 02:06:11 Modified files: usr.sbin/relayd: relay_http.c Log message: Make the HTTP version mandatory and abort if it is missing in the request. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/15 02:16:21 Modified files: sys/arch/sparc64/dev: vdsk.c vnet.c Log message: Call ldc_send_unreliable() insteaf of duplicating the code to send an ldc packet. Rename vio_sendmsg() to vnet_sendmsg(). CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/15 02:21:39 Modified files: misc/portroach : Makefile Added files: misc/portroach/patches: patch-Portroach_SQL_pm patch-portroach_pl patch-templates_reminder_mail Log message: backport fix from upstream git to unbreak sending mail CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/15 02:21:51 Modified files: net/telepathy/folks: Makefile distinfo Log message: update to folks-0.10.0 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/15 02:29:33 Modified files: databases/redis: Makefile distinfo databases/redis/patches: patch-sentinel_conf patch-src_scripting_c Log message: Bugfixing update to redis-2.8.15 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/15 02:31:12 Modified files: security/volatility: Makefile security/volatility/pkg: PLIST Log message: s/${MACHINE_ARCH}/amd64/ to fix packaging on !amd64 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/15 02:44:35 Modified files: audio/mpd : Makefile distinfo audio/mpd/patches: patch-Makefile_in Log message: Bugfix update to mpd-0.18.14 CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/15 03:37:55 Modified files: x11/ogre/patches: patch-Samples_Browser_CMakeLists_txt Log message: Link to upstream's changeset CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/15 05:46:55 Modified files: databases/hs-HDBC-mysql: Makefile Log message: missing bump after switch to MariaDB CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/15 06:00:04 Modified files: sys/dev/ic : mpi.c sys/dev/pci : mpi_pci.c Log message: mark the interrupt handler mpsafe, and drop the kernel lock in the scs_cmd paths. take it again when going back to other parts of the kernel. tested by and ok kettenis@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/15 06:07:58 Modified files: devel/mm-common: Makefile distinfo devel/mm-common/pkg: PLIST Log message: Update to mm-common-0.9.7. CVSROOT: /cvs Module name: xenocara Changes by: okan@cvs.openbsd.org 2014/09/15 07:00:49 Modified files: app/cwm : client.c search.c xevents.c xutil.c Log message: use similiar style for client flags CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/15 08:22:07 Modified files: sys/dev/pci : ppb.c ppbreg.h Log message: Add generic support for bridges that support subtractive decoding. Fixes issues with pcmcia behind a ATI SB400 PCI bridge reported by Thierry Deval. ok mpi@ CVSROOT: /cvs Module name: www Changes by: bcallah@cvs.openbsd.org 2014/09/15 08:38:49 Modified files: . : events.html Log message: Was invited to give a talk at my university next month. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/15 09:11:35 Modified files: math/pari : Makefile distinfo math/pari/patches: patch-Configure math/pari/pkg : PLIST Added files: math/pari/patches: patch-src_test_dotest Log message: Update to pari 2.1.7, from Sebastien Marie (thanks!) Fixes readline support, correct tests target, and dont pickup emacs if installed. All tests pass and also Math::Pari tests. We cant update to 2.3 branch for obscure breakage with other things depending on it. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2014/09/15 09:18:16 Modified files: mail/courier-authlib: Makefile Log message: missing bump after switch to MariaDB CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/15 09:40:13 Modified files: mail/zarafa/zarafa: Makefile distinfo Log message: fix distfile checksum CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/15 09:55:22 Modified files: lang/php/5.5 : Tag: OPENBSD_5_6 Makefile distinfo Log message: security update to 5.5.16; ok jasper@ CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/15 09:55:45 Modified files: lang/php/5.4 : Tag: OPENBSD_5_6 Makefile distinfo Log message: security update to 5.4.32; ok jasper@ CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/15 10:00:25 Modified files: lang/php/5.4 : Tag: OPENBSD_5_5 Makefile distinfo Log message: security update to 5.4.30; ok jasper@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/15 11:10:45 Modified files: databases/mydumper: Makefile databases/mydumper/patches: patch-CMakeLists_txt patch-mydumper_c Added files: databases/mydumper/patches: patch-config_h_in Log message: mydumper is tocuhing internal MySQL API it should not be. upstream has disabled the binlog support until something can be done to fix it properly. "The real problem here is that no application should ever include sql_common.h or try to execute, the internal to libmysql functions, simple_command() or advanced_command() directly. The primary reason for this is that these functions are not safe for internal API or structure changes and may cause applications crashes between even minor versions of libmysql.a" https://bugs.launchpad.net/mydumper/+bug/1316001 ok giovanni@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/15 11:15:13 Modified files: devel/libsigc++-2: Makefile distinfo devel/libsigc++-2/pkg: PLIST Log message: Update to libsigc++-2.4.0. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/15 13:08:22 Modified files: libexec/rpc.rstatd: rstat_proc.c sbin/sysctl : sysctl.c sys/arch/hppa/hppa: autoconf.c sys/arch/hppa64/hppa64: autoconf.c sys/kern : kern_clock.c kern_sysctl.c tty.c sys/net : if_sl.c ppp_tty.c sys/sys : tty.h usr.bin/systat : cpu.c iostat.c pigs.c vmstat.c usr.bin/top : machine.c usr.bin/vmstat : dkstats.c vmstat.c usr.sbin/apmd : apmd.c usr.sbin/iostat: iostat.c Removed files: sys/sys : dkstat.h Log message: Remove non-standard header. It has not contained anything related to disk stastics for almost 17 years, and the remaining userland-visible defines duplicate those found in . Move the remaining _KERNEL defines to where they belong, and update all users to cope with this. ok kettenis@ CVSROOT: /cvs Module name: ports Changes by: brad@cvs.openbsd.org 2014/09/15 13:24:16 Modified files: devel/llvm : Makefile devel/llvm/patches: patch-lib_Target_X86_X86ISelLowering_cpp Log message: r217410 Set trunc store action to Expand for all X86 targets. When compiling without SSE2, isTruncStoreLegal(F64, F32) would return Legal, whereas with SSE2 it would return Expand. And since the Target doesn't seem to actually handle a truncstore for double -> float, it would just output a store of a full double in the space for a float hence overwriting other bits on the stack. CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/15 13:36:43 Modified files: usr.sbin/bind : Makefile.in Removed files: usr.sbin/bind : CHANGES COPYRIGHT FAQ FAQ.xml README README.OpenBSD usr.sbin/bind/docutil: HTML_COPYRIGHT MAN_COPYRIGHT Log message: Garbage collecting some further bits that are not necessary within the BIND directory and for Makefile.in removing some files that no longer exist for the distclean target. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/09/15 13:41:03 Modified files: devel/py-py : Makefile distinfo devel/py-py/pkg: PLIST Log message: Update to py-py-1.4.23. OK dcoppa@ CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/09/15 13:42:08 Modified files: devel/py-test : Makefile distinfo devel/py-test/pkg: PLIST Log message: Update to py-test-2.6.1. OK dcoppa@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/15 13:51:40 Modified files: textproc/p5-XML-Twig: Makefile distinfo textproc/p5-XML-Twig/patches: patch-Makefile_PL textproc/p5-XML-Twig/pkg: PLIST Log message: update to p5-XML-Twig-3.48 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/15 13:54:05 Modified files: devel/hs-failure: Makefile security/hs-cryptohash: Makefile audio/p5-POE-Component-Client-MPD: Makefile Log message: drop maintainership for i don't use these anymore CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/09/15 14:26:32 Modified files: etc : Makefile Log message: Ensure proper group ID for chio.conf example. Noted by and OK ajacoutot@ Positive feedback halex@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/15 14:34:15 Modified files: sys/arch/sparc64/dev: vdsk.c Log message: Fix logic error; we're out of IOs if we're not connected to the virtual disk server *or* if we've filled all the entries on the ring. CVSROOT: /cvs Module name: src Changes by: todd@cvs.openbsd.org 2014/09/15 15:17:07 Modified files: distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/09/15 16:00:24 Modified files: sys/dev : rnd.c Log message: update comments to reflect chacha20. from Max Fillinger CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 16:25:57 Modified files: gnu/usr.sbin : Makefile Log message: Unlink sendmail from the build. ok krw@ ajacoutot@ CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 16:28:58 Modified files: etc : Makefile changelist crontab master.passwd rc rc.conf etc/mail : Makefile etc/mtree : 4.4BSD.dist Log message: Remove sendmail tentacles. ok krw@ ajacoutot@ CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 16:29:54 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus mi distrib/sets/lists/comp: mi distrib/sets/lists/etc: mi distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 16:31:08 Modified files: usr.sbin/smtpd/smtpd: Makefile Log message: install sendmail.8 from smtpd now that sendmail is gone. CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 16:34:32 Removed files: etc/mail : README access genericstable local-host-names relay-domains trusted-users virtusertable Log message: Remove sendmail specific files. CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 16:35:25 Removed files: etc/mail : mailertable Log message: Remove sendmail specific files. CVSROOT: /cvs Module name: www Changes by: matthieu@cvs.openbsd.org 2014/09/15 16:51:00 Modified files: faq : current.html Log message: Sendmail removed CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 18:05:41 Modified files: distrib/sets/lists/base: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 18:19:31 Modified files: include : Makefile Log message: Missed this sendmail reference in the sendmail removal CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/09/15 20:28:35 Modified files: faq : faq6.html Log message: + 6.2.9 - Adding and Replacing NICs. Inspired by how easy this is on OpenBSD and what a nightmare it is on many other OSs. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/15 21:26:08 Modified files: sys/sys : pool.h sys/kern : subr_pool.c Log message: deprecate PR_DEBUG and MALLOC_DEBUG in pools. poked by kspillner@ ok miod@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/15 23:12:04 Modified files: sys/dev/pci : mpii.c Log message: mark the mpii interrupt handler as mpsafe, and drop the kernel lock in the scsi_cmd path and iopool backend. modelled on mfi and mpi. CVSROOT: /cvs Module name: src Changes by: matthieu@cvs.openbsd.org 2014/09/15 23:26:06 Modified files: distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/15 23:51:21 Modified files: security/libtasn1: Makefile distinfo Log message: Update to libtasn1-4.2. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 00:46:37 Modified files: sysutils/ruby-puppet/3: Makefile distinfo sysutils/ruby-puppet/3/patches: patch-lib_puppet_defaults_rb sysutils/ruby-puppet/3/pkg: PLIST Log message: - update to puppet-3.7.1 * https://docs.puppetlabs.com/puppet/3.7/reference/release_notes.html#puppet-371 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 00:52:47 Modified files: devel/p5-POE-Component-Supervisor: Makefile distinfo Removed files: devel/p5-POE-Component-Supervisor/patches: patch-lib_POE_Component_Supervisor_Handle_Proc_pm patch-t_04_global_restart_policy_t Log message: update to POE-Component-Supervisor-0.08 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/16 01:05:08 Modified files: x11/gnome/caribou: Makefile distinfo Log message: Update to caribou-0.4.15. CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/16 01:14:14 Modified files: databases/py-redis: Makefile distinfo databases/py-redis/pkg: PLIST Log message: Update to py-redis-2.10.3 CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/16 01:28:10 Modified files: sysutils/conky : Makefile sysutils/conky/patches: patch-src_openbsd_c Log message: unbreak with dkstat.h removal. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 02:12:27 Modified files: devel/libgit2/libgit2: Makefile distinfo Log message: update to libgit2-0.21.1 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 02:18:06 Modified files: devel/libgit2/libgit2-glib: Makefile distinfo devel/libgit2/libgit2-glib/pkg: PLIST Log message: update to libgit2-glib-0.0.22 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 02:18:07 Modified files: devel/libgit2/py-git2: Makefile distinfo devel/libgit2/py-git2/pkg: PLIST Removed files: devel/libgit2/py-git2/patches: patch-pygit2_ffi_py Log message: update to py-git2-0.21.3 CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/16 02:50:26 Modified files: usr.sbin/pkg_add/OpenBSD: PkgCreate.pm Log message: store explicit timestamps in generated plists. this prevents updates from fucking up mtime of new file, thus the "python exception" no longer prevents python files from being reordered. Note that this requires newish scaffolding in pkg_add proper. That scaffolding was committed prior to 5.6, in preparation for this change. CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/16 02:51:38 Modified files: usr.sbin/pkg_add/OpenBSD: ArcCheck.pm Log message: if a @ts annotation is detected, wipe tarball timestamp. Archives will look as if all files were born in 1970. The useful side-effect is that meta-data for content-identical files WILL be identical as well. CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 03:07:03 Modified files: mail/p5-Mail-SpamAssassin: Makefile net/nfsen : Makefile sysutils/ruby-facter: Makefile www/apache-httpd: Makefile www/apache-httpd-openbsd: Makefile www/xcache : Makefile sysutils/ruby-puppet/3: Makefile Log message: explicitly mark the few ports that don't build with FAKE_AS_ROOT=No CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 03:08:02 Modified files: infrastructure/mk: pkgpath.mk Log message: explicit path to perl to prevent gnu autoconf fucking up in ptlib okay aja@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 03:09:46 Modified files: lang/ruby : Makefile.inc databases/postgresql: Makefile devel/ptlib : Makefile Log message: turn on "always-wrap" for the 3 ports known to embed their install program in installed files. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/16 03:32:12 Modified files: sysutils/salt : Makefile Log message: Another missing TEST_DEPENDS. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 03:56:07 Modified files: www/c-icap/c-icap: Makefile distinfo Log message: update to c-icap 0.3.4 CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2014/09/16 04:01:51 Modified files: usr.sbin/pkg_add/OpenBSD: PkgCreate.pm Log message: fix display of comments to use "say" properly. Prepare scaffolding to be able to chunk archives CVSROOT: /cvs Module name: ports Changes by: dcoppa@cvs.openbsd.org 2014/09/16 04:07:00 Modified files: lang/ghc : Makefile Log message: Build ghc with '-fno-pie' on i386 ok kili@ (maintainer) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 04:23:19 Modified files: sysutils/moreutils: Makefile distinfo Removed files: sysutils/moreutils/patches: patch-ifne_c Log message: update to moreutils 0.52; the ts timestamping filter gains the new -s option, which uses timestamps relative to the start of the program (compared to absolute timestamps as used by default, or incremental as selected with -i) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 04:32:39 Modified files: net/dnstop : Makefile distinfo net/dnstop/patches: patch-dnstop_c Log message: update to dnstop 20140915, which adds a "new-gtlds" filter, which shows only queries for doains ending with recently added generic TLDs which can be useful for tracking down hosts using internal names (maybe by relying on automatic qualification of names i.e. xy.prod -> xy.prod.example.com) that will conflict with new GTLDs. As the release notes put it, 'If you use short (not fully qualified) names internally you may be uknownlying[sic] relying on root (or other) name servers to return NXDOMAIN for them. If so, "you're gonna have a bad time."' CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 04:44:17 Modified files: www/haserl : Makefile distinfo Log message: SECURITY update to haserl 0.9.33, fixing various vulnerabilities including a heap overflow in sliding_buffer.c CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 04:44:37 Modified files: www/haserl : Tag: OPENBSD_5_6 Makefile distinfo Log message: SECURITY update to haserl 0.9.33, fixing various vulnerabilities including a heap overflow in sliding_buffer.c CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 04:44:58 Modified files: www/haserl : Tag: OPENBSD_5_5 Makefile distinfo Log message: SECURITY update to haserl 0.9.33, fixing various vulnerabilities including a heap overflow in sliding_buffer.c CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 04:46:22 Modified files: textproc/podofo: Makefile Log message: add a comment next to distname explaining why this isn't the latest upstream v CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/09/16 04:55:06 Modified files: faq : current.html Log message: typo s/enables/enable// CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/09/16 04:57:59 Modified files: faq : current.html Log message: zap stray


CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2014/09/16 04:59:17 Modified files: faq : current.html Log message: reorder
after previous CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 05:30:47 Modified files: mail/rcube-contextmenu: Makefile distinfo mail/rcube-contextmenu/pkg: PLIST Log message: update to rcube-contextmenu-2.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 05:55:04 Modified files: audio/beets : Makefile distinfo audio/beets/pkg: PLIST Log message: update to beets 1.3.7, take maintainer CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 06:02:05 Modified files: audio/mp3gain : Makefile distinfo audio/mp3gain/pkg: PLIST Log message: update to mp3gain 1.5.2 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 06:08:59 Modified files: audio/quodlibet: Makefile distinfo Log message: update to quodlibet-3.12, take maintainer CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 06:15:23 Modified files: databases/lbdb : Makefile distinfo databases/lbdb/patches: patch-Makefile_in patch-m_muttalias_sh_in Removed files: databases/lbdb/patches: patch-mutt_ldap_query_pl_in Log message: update to lbdb 0.39 CVSROOT: /cvs Module name: ports Changes by: chrisz@cvs.openbsd.org 2014/09/16 06:24:26 Modified files: devel/vim-taglist: Makefile distinfo devel/vim-taglist/pkg: PLIST Log message: Update to 4.6. * Install into version agnostic share/vim/vimfiles instead of share/vim/vim74 * Install vim documentation tags into vim-taglist.tags and merge this file with other plugin's taglists using @exec-always. ok edd@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 06:35:18 Modified files: net/lftp : Makefile distinfo net/lftp/patches: patch-configure patch-src_Resolver_cc Log message: update to lftp 4.5.5 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 06:39:22 Modified files: games/xcowsay : Makefile distinfo games/xcowsay/pkg: PLIST Removed files: games/xcowsay/patches: patch-src_bubblegen_c Log message: update the xcowsay advanced textual alerting system for X11 to 1.3 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 06:45:21 Modified files: databases/xapian-core: Makefile www/xapian-omega: Makefile databases/p5-Search-Xapian: Makefile Log message: set PORTROACH for xapian's stable release numbering scheme, n..nn CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/09/16 06:58:58 Log message: Import vim-command-t. Fast, intuitive file opening in VIM OK chrisz@ Status: Vendor Tag: edd Release Tags: edd_20140916 N ports/devel/vim-command-t/Makefile N ports/devel/vim-command-t/distinfo N ports/devel/vim-command-t/patches/patch-ruby_command-t_watchman_c N ports/devel/vim-command-t/pkg/DESCR N ports/devel/vim-command-t/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/09/16 07:06:10 Modified files: devel : Makefile Log message: Link vim-command-t. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 07:10:46 Modified files: devel/vim-command-t: Makefile Log message: EXTRACT_SUFX defaults to .tar.gz CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2014/09/16 07:15:53 Modified files: devel/hgview : Makefile distinfo devel/hgview/patches: patch-setup_py devel/hgview/pkg: PLIST Removed files: devel/hgview/patches: patch-hgviewlib_curses_application_py Log message: Update hgview to 1.8.2. OK benoit@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 07:54:02 Modified files: devel/p5-Switch: Makefile distinfo Log message: update to Switch-2.17 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 08:01:42 Modified files: . : INDEX Log message: sync; 8883 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 08:02:53 Modified files: converters/p5-JSON-Any: Makefile distinfo Log message: update to p5-JSON-Any-1.36 CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 08:23:46 Modified files: devel : Makefile Log message: -waf CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 08:25:02 Removed files: devel/waf : Makefile distinfo waf.port.mk devel/waf/patches: patch-waf-light patch-wscript devel/waf/pkg : DESCR PLIST Log message: if autoconf and scons had a child, it would've been 'waf'. 'nuf said. ok aja@ landry@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 08:25:17 Modified files: devel/quirks : Makefile devel/quirks/files: Quirks.pm Log message: register waf removal CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 08:49:14 Modified files: converters/p5-Finance-Currency-Convert-XE: Makefile distinfo Log message: update to Finance-Currency-Convert-XE-0.25 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 09:01:48 Modified files: databases/iodbc: Makefile distinfo databases/iodbc/patches: patch-admin_libiodbc_pc_in patch-bin_iodbc-config_in patch-include_sqltypes_h patch-iodbc_connect_c patch-iodbcadm_gtk_administrator_c patch-samples_Makefile_in Log message: update to iODBC 3.52.9 CVSROOT: /cvs Module name: ports Changes by: bcallah@cvs.openbsd.org 2014/09/16 09:19:25 Modified files: www/rawdog : Makefile distinfo Log message: Mostly bugfix update to 2.20 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 09:29:30 Modified files: www/squid/stable: Makefile distinfo Log message: update to squid-3.4.8, fix off by one in SNMP subsystem 3.4.8 also fixes an issue with the standalone pinger process as described in http://www.openwall.com/lists/oss-security/2014/09/16/6, but we don't have that enabled in the port at present. CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/16 09:41:16 Modified files: lang/jimtcl : Makefile distinfo lang/jimtcl/patches: patch-Makefile_in lang/jimtcl/pkg: PLIST Added files: lang/jimtcl/patches: patch-examples_api_Makefile patch-examples_ext_Makefile patch-initjimsh_tcl Log message: Update to 0.75pl1. ok sthen@ CVSROOT: /cvs Module name: ports Changes by: stu@cvs.openbsd.org 2014/09/16 09:42:36 Modified files: devel/openocd : Makefile Added files: devel/openocd/patches: patch-src_flash_mflash_c patch-src_helper_command_c patch-src_helper_command_h Log message: Adjust for jimtcl-0.75pl1. Fix bad bound. ok sthen@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 09:56:36 Modified files: usr.bin/at : at.1 Log message: no need to discuss sendmail (or any particular mailer) here; while here, \*(Gt -> >, per ingo; CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/16 09:59:35 Modified files: sys/arch/sparc64/dev: vdsk.c Log message: Split out command submission code into its own function. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 10:05:44 Modified files: usr.bin/openssl: openssl.1 Log message: a little less sendmail specific; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 10:11:56 Modified files: usr.bin/vacation: vacation.1 Log message: sendmail -> smtpd; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 10:13:33 Modified files: share/man/man3 : intro.3 Log message: no more milter; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 10:17:49 Modified files: share/man/man3 : sysexits.3 Log message: less sendmail specific; CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 10:21:12 Modified files: comms/fldigi : Makefile distinfo Log message: update to fldigi 3.21.83 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 10:24:02 Modified files: mail/p5-Mail-SpamAssassin: Makefile Log message: fix FAKE_AS_ROOT CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2014/09/16 10:25:27 Modified files: geo/p5-Geo-StreetAddress-US: Makefile distinfo Log message: Update p5-Geo-StreetAddress-US to 1.04. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2014/09/16 10:26:25 Modified files: net/lldpd : Makefile distinfo net/lldpd/pkg : PLIST Log message: update to lldpd-0.7.10, take maintainer CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 10:27:23 Modified files: usr.bin/newsyslog: newsyslog.8 Log message: less sendmail specific; ok millert CVSROOT: /cvs Module name: src Changes by: todd@cvs.openbsd.org 2014/09/16 10:53:49 Modified files: distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 md.aviion md.hppa md.hppa64 md.i386 md.landisk md.loongson md.luna88k md.macppc md.octeon md.sgi md.socppc md.sparc md.sparc64 md.vax md.zaurus distrib/sets/lists/comp: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/16 10:54:08 Log message: update to NSD 4.1.0, ok sthen@ Status: Vendor Tag: NLNETLABS Release Tags: NSD_4_1_0 U src/usr.sbin/nsd/axfr.c C src/usr.sbin/nsd/rrl.c U src/usr.sbin/nsd/tsig-openssl.h U src/usr.sbin/nsd/LICENSE U src/usr.sbin/nsd/udbzone.h U src/usr.sbin/nsd/iterated_hash.h U src/usr.sbin/nsd/nsec3.h C src/usr.sbin/nsd/nsd.8.in U src/usr.sbin/nsd/remote.h C src/usr.sbin/nsd/server.c U src/usr.sbin/nsd/packet.h U src/usr.sbin/nsd/query.c U src/usr.sbin/nsd/answer.h U src/usr.sbin/nsd/buffer.h U src/usr.sbin/nsd/nsd.h C src/usr.sbin/nsd/nsec3.c C src/usr.sbin/nsd/configure.ac C src/usr.sbin/nsd/xfrd-tcp.c U src/usr.sbin/nsd/zonec.h C src/usr.sbin/nsd/xfrd-disk.c U src/usr.sbin/nsd/remote.c U src/usr.sbin/nsd/xfrd-tcp.h U src/usr.sbin/nsd/udb.h U src/usr.sbin/nsd/tsig-openssl.c U src/usr.sbin/nsd/netio.c C src/usr.sbin/nsd/nsd.c U src/usr.sbin/nsd/region-allocator.h U src/usr.sbin/nsd/axfr.h U src/usr.sbin/nsd/tsig.c U src/usr.sbin/nsd/nsd.conf.sample.in U src/usr.sbin/nsd/tsig.h C src/usr.sbin/nsd/nsd.conf.5.in U src/usr.sbin/nsd/nsd-control.c U src/usr.sbin/nsd/rdata.h U src/usr.sbin/nsd/answer.c U src/usr.sbin/nsd/xfrd.h C src/usr.sbin/nsd/xfrd.c U src/usr.sbin/nsd/xfrd-notify.c C src/usr.sbin/nsd/nsd-checkconf.c C src/usr.sbin/nsd/Makefile.in C src/usr.sbin/nsd/configure U src/usr.sbin/nsd/packet.c U src/usr.sbin/nsd/radtree.h U src/usr.sbin/nsd/rrl.h U src/usr.sbin/nsd/mini_event.h U src/usr.sbin/nsd/netio.h U src/usr.sbin/nsd/configyyrename.h U src/usr.sbin/nsd/options.h C src/usr.sbin/nsd/configparser.y C src/usr.sbin/nsd/dns.c U src/usr.sbin/nsd/difffile.c U src/usr.sbin/nsd/xfrd-disk.h U src/usr.sbin/nsd/namedb.h U src/usr.sbin/nsd/radtree.c U src/usr.sbin/nsd/zlexer.lex U src/usr.sbin/nsd/buffer.c U src/usr.sbin/nsd/difffile.h U src/usr.sbin/nsd/xfrd-notify.h U src/usr.sbin/nsd/install-sh U src/usr.sbin/nsd/dname.h U src/usr.sbin/nsd/namedb.c U src/usr.sbin/nsd/edns.h U src/usr.sbin/nsd/dns.h U src/usr.sbin/nsd/nsd-mem.c U src/usr.sbin/nsd/ipc.h U src/usr.sbin/nsd/rbtree.h U src/usr.sbin/nsd/mini_event.c U src/usr.sbin/nsd/edns.c U src/usr.sbin/nsd/mkinstalldirs U src/usr.sbin/nsd/nsd-control.8.in C src/usr.sbin/nsd/dname.c U src/usr.sbin/nsd/dbaccess.c N src/usr.sbin/nsd/nsd-checkzone.c U src/usr.sbin/nsd/dbcreate.c C src/usr.sbin/nsd/util.h U src/usr.sbin/nsd/ipc.c C src/usr.sbin/nsd/config.h.in U src/usr.sbin/nsd/region-allocator.c C src/usr.sbin/nsd/lookup3.c U src/usr.sbin/nsd/acx_nlnetlabs.m4 U src/usr.sbin/nsd/rdata.c U src/usr.sbin/nsd/udbradtree.c U src/usr.sbin/nsd/lookup3.h C src/usr.sbin/nsd/zparser.y U src/usr.sbin/nsd/udbzone.c U src/usr.sbin/nsd/nsd-control-setup.sh.in U src/usr.sbin/nsd/udbradtree.h U src/usr.sbin/nsd/zonec.c U src/usr.sbin/nsd/udb.c U src/usr.sbin/nsd/configlexer.lex U src/usr.sbin/nsd/options.c U src/usr.sbin/nsd/iterated_hash.c C src/usr.sbin/nsd/nsd-checkconf.8.in U src/usr.sbin/nsd/query.h C src/usr.sbin/nsd/util.c N src/usr.sbin/nsd/nsd-checkzone.8.in U src/usr.sbin/nsd/rbtree.c U src/usr.sbin/nsd/compat/pselect.c U src/usr.sbin/nsd/compat/malloc.c U src/usr.sbin/nsd/compat/b64_pton.c U src/usr.sbin/nsd/compat/b64_ntop.c U src/usr.sbin/nsd/compat/strlcpy.c U src/usr.sbin/nsd/compat/inet_pton.c U src/usr.sbin/nsd/compat/memcmp.c U src/usr.sbin/nsd/compat/memmove.c U src/usr.sbin/nsd/compat/fake-rfc2553.h U src/usr.sbin/nsd/compat/strptime.c U src/usr.sbin/nsd/compat/strlcat.c U src/usr.sbin/nsd/compat/snprintf.c U src/usr.sbin/nsd/compat/fake-rfc2553.c U src/usr.sbin/nsd/compat/inet_ntop.c U src/usr.sbin/nsd/compat/basename.c U src/usr.sbin/nsd/compat/inet_aton.c U src/usr.sbin/nsd/compat/memcmp.h 22 conflicts created by this import. Use the following command to help the merge: cvs checkout -jNLNETLABS:yesterday -jNLNETLABS src/usr.sbin/nsd CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/16 10:58:13 Modified files: share/man/man7 : hier.7 Log message: Drop sendmail references. ok jmc@ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/16 11:01:38 Modified files: usr.sbin/nsd : Makefile.in config.h.in configparser.y configure configure.ac dname.c dns.c lookup3.c nsd-checkconf.8.in nsd-checkconf.c nsd.8.in nsd.c nsd.conf.5.in nsec3.c rrl.c server.c util.c util.h xfrd-disk.c xfrd-tcp.c xfrd.c zparser.y Log message: merge conflicts CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/16 11:08:45 Modified files: etc/mtree : special 4.4BSD.dist Log message: More sendmail removal. ok matthieu@ CVSROOT: /cvs Module name: src Changes by: brad@cvs.openbsd.org 2014/09/16 11:09:24 Modified files: usr.sbin/nsd : Makefile.bsd-wrapper Log message: Add nsd-checkzone. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/09/16 11:09:32 Log message: Import sendmail-8.14.9 Thanks to matthieu@ for the work done in base, input from at least zhuk@ and sthen@, ok ajacoutot@ Status: Vendor Tag: jca Release Tags: jca_2014-09-16 N ports/mail/sendmail/distinfo N ports/mail/sendmail/Makefile N ports/mail/sendmail/files/cf-Makefile N ports/mail/sendmail/files/access N ports/mail/sendmail/files/local-host-names N ports/mail/sendmail/files/genericstable N ports/mail/sendmail/files/mailer.conf.sendmail N ports/mail/sendmail/files/mailertable N ports/mail/sendmail/files/relay-domains N ports/mail/sendmail/files/sendmail-disable N ports/mail/sendmail/files/sendmail-enable N ports/mail/sendmail/files/site.OS.m4 N ports/mail/sendmail/files/trusted-users N ports/mail/sendmail/files/virtusertable N ports/mail/sendmail/files/cf/openbsd-lists.mc N ports/mail/sendmail/files/cf/openbsd-bulk.mc N ports/mail/sendmail/files/cf/openbsd-localhost.mc N ports/mail/sendmail/files/cf/openbsd-proto.mc N ports/mail/sendmail/files/cf/openbsd-submit.mc N ports/mail/sendmail/patches/patch-mail_local_Makefile_m4 N ports/mail/sendmail/patches/patch-cf_cf_Makefile N ports/mail/sendmail/pkg/DESCR N ports/mail/sendmail/pkg/PLIST N ports/mail/sendmail/pkg/README N ports/mail/sendmail/pkg/sendmail.rc No conflicts created by this import CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2014/09/16 11:10:32 Modified files: distrib/sets/lists/base: mi Log message: sync CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/09/16 11:11:29 Modified files: mail : Makefile Log message: Hook up sendmail. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2014/09/16 11:14:20 Modified files: mail : Makefile Log message: Build all sendmail FLAVORs. CVSROOT: /cvs Module name: www Changes by: ajacoutot@cvs.openbsd.org 2014/09/16 11:16:32 Modified files: faq : current.html Log message: Another sendmail directory to remove. CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 11:28:07 Modified files: databases/mongodb: Makefile distinfo databases/mongodb/patches: patch-SConstruct patch-src_mongo_SConscript databases/mongodb/pkg: PLIST Removed files: databases/mongodb/patches: patch-src_SConscript_client patch-src_third_party_s2_hash_h Log message: - update to mongodb-2.6.4 based on an earlier diff by sthen@, and ok sthen@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 12:01:08 Log message: import bibtex2html-1.98 collection of tools for translating from BibTeX to HTML from Ingo Feinerer, ok aja@ Status: Vendor Tag: jasper Release Tags: jasper_20141609 N ports/textproc/bibtex2html/Makefile N ports/textproc/bibtex2html/distinfo N ports/textproc/bibtex2html/pkg/PLIST N ports/textproc/bibtex2html/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 12:02:23 Modified files: textproc : Makefile Log message: +bibtex2html CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/16 12:07:41 Modified files: lang/smlnj : Makefile Log message: BROKEN-powerpc: /usr/obj/ports/smlnj-110.76//bin/.run/run.ppc-openbsd: undefined symbol '' (note that this port is ONLY_FOR_ARCHS=i386 powerpc, so i doubt its usefulness in the portstree.. anybody using it ? rly ?) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/16 12:11:35 Modified files: multimedia/libaacs: Makefile Log message: BROKEN-powerpc, fails to link with missing refs to free()/malloc() since 20140513. PIE ? CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/16 12:13:58 Modified files: multimedia/x265: Makefile Log message: BROKEN-powerpc: when linking libx265.so.0.0 undefined reference to `__sync_val_compare_and_swap_8' undefined reference to `__sync_or_and_fetch_8' CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2014/09/16 12:15:21 Modified files: lib/libcrypto/man: Makefile distrib/sets/lists/comp: mi Log message: A few more MLINKs. CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2014/09/16 12:37:57 Modified files: www/nginx : Makefile distinfo Log message: security update to 1.7.5: CVE-2014-3616 - fix an SSL session reuse vulnerability CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 12:54:29 Modified files: sysutils/bubblemon-dockapp/patches: patch-sys_openbsd_c Log message: fix build post dkstats.h removal CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 12:57:32 Modified files: sysutils/hot-babe/patches: patch-hot-babe_c Log message: byebye dkstats.h, you were not needed CVSROOT: /cvs Module name: src Changes by: sf@cvs.openbsd.org 2014/09/16 12:57:51 Modified files: sys/arch/amd64/amd64: pmap.c sys/arch/amd64/include: pmap.h Log message: Simple cleanups for amd64 pmap - use __func__ in panics/printfs (fixes some out of sync function names) - tell the compiler that code paths where we print diagnostics are unlikely - use pmap_valid_entry() in some places - remove KERNSPACE, which is not used anywhere OK guenther@ mlarkin@ kettenis@ CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 13:03:33 Added files: x11/i3status/patches: patch-src_print_cpu_usage_c Log message: fix build past dkstats.h removal CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 13:10:55 Modified files: infrastructure/mk: bsd.port.mk Log message: FAKE_AS_ROOT=No as a default. "just turn it on!" naddy@ happy to oblige. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/16 13:18:07 Modified files: net/filezilla : Makefile Log message: BROKEN-hppa:serverpath.h:17:19: error: variable 'CServerPath final' has initializer but incomplete type seems hppa doesnt like class foo final {} declarations.. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/16 13:19:24 Modified files: games/openxcom : Makefile Log message: BROKEN-hppa = OOM on Engine/Scalers/hq4x.cpp CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/16 13:21:21 Modified files: multimedia/x265: Makefile Log message: BROKEN-hppa - undefined refs to gcc builtin atomic ops. That's what happens when you only care about i386/amd64, and dont even try gcc4 module for other archs... CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2014/09/16 13:22:38 Modified files: cad/qucs : Makefile Log message: BORKEN-hppa: OOM on hicumL2V2p23.core.o CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 13:26:34 Modified files: textproc/bibtex2html: Makefile Log message: unbreak MASTER_SITES, oops CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2014/09/16 13:54:29 Modified files: mail/sendmail : Makefile mail/sendmail/files: site.OS.m4 mail/sendmail/pkg: PLIST Added files: mail/sendmail/files: sharedlibrary.m4 Log message: Build a shared version of libmilter. .m4 bits obtained from FreeBSD/Absolight/Sendmail then uglily hacked. major bump for safety. ok ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: miod@cvs.openbsd.org 2014/09/16 13:56:10 Modified files: archivers/pigz : Makefile archivers/zopfli: Makefile audio/celt : Makefile audio/flite : Makefile audio/opus : Makefile audio/xmms : Makefile benchmarks/bonnie++: Makefile cad/gnucap : Makefile devel/dconf : Makefile devel/glib2mm : Makefile devel/libaudiofile: Makefile devel/ninja : Makefile devel/sparsehash: Makefile graphics/cairomm: Makefile graphics/freeglut: Makefile graphics/glew : Makefile graphics/py-cairo: Makefile graphics/py3-cairo: Makefile net/xmlrpc-c : Makefile textproc/exempi: Makefile textproc/icu4c : Makefile x11/fltk : Makefile x11/qt3 : Makefile Log message: Add a bunch of NOT_FOR_ARCHS and BROKEN- annotations, either for all gcc3 platforms (due to compiler deficiencies) or m88k only (due to toolchain issues leading to libGL not being available). CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 14:02:35 Modified files: x11/kde/base3/patches: patch-ksysguard_ksysguardd_OpenBSD_memory_c Added files: x11/kde/base3/patches: patch-ksysguard_ksysguardd_OpenBSD_cpu_c Log message: fix post dkstats.h removal CVSROOT: /cvs Module name: ports Changes by: espie@cvs.openbsd.org 2014/09/16 14:13:49 Modified files: x11/kde/base3/patches: patch-kicker_applets_naughty_NaughtyProcessMonitor_cpp Log message: yet a bit more dkstat.h breakage. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2014/09/16 14:23:42 Modified files: sys/arch/sparc64/dev: vdsk.c Log message: Check the right descriptor field when polling for completion. CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 15:11:56 Modified files: share/man/man7 : mailaddr.7 libexec/lockspool: lockspool.1 Log message: no need to Xr sendmail here; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 15:16:57 Modified files: libexec/spamd : spamd.8 Log message: less sendmail; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 15:18:19 Modified files: usr.sbin/smtpd : makemap.8 Log message: there is no editmap; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 15:24:11 Modified files: usr.sbin/mailwrapper: mailer.conf.5 Log message: smtpd in SEE ALSO; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2014/09/16 15:28:51 Modified files: libexec/mail.local: mail.local.8 Log message: less sendmail; CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/16 15:45:12 Modified files: sys/kern : subr_pool.c Log message: tweak panics so they use __func__ consistently. CVSROOT: /cvs Module name: src Changes by: rpe@cvs.openbsd.org 2014/09/16 15:56:42 Modified files: usr.sbin/sysmerge: sysmerge.sh Log message: zap unnecessary quotes OK ajacoutot@ CVSROOT: /cvs Module name: ports Changes by: jasper@cvs.openbsd.org 2014/09/16 15:58:26 Modified files: devel/ruby-rspec/specinfra: Makefile Added files: devel/ruby-rspec/specinfra/patches: patch-lib_specinfra_command_openbsd_rb Log message: use rcctl(8) instead of various grep constructs CVSROOT: /cvs Module name: src Changes by: tedu@cvs.openbsd.org 2014/09/16 16:07:02 Modified files: libexec/login_passwd: login_passwd.c Log message: use crypt_checkpass function to make things simple CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2014/09/16 17:05:34 Modified files: sys/kern : subr_pool.c Log message: disable taking the mutex to read pool stats. some pool users (eg, mbufs and mbuf clusters) protect calls to pools with their own locks that operate at high spl levels, rather than pool_setipl() to have pools protect themselves. this means pools mtx_enter doesnt necessarily prevent interrupts that will use a pool, so we get code paths that try to mtx_enter twice, which blows up. reported by vlado at bsdbg dot net and matt bettinger diagnosed by kettenis@ CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2014/09/16 17:41:41 Modified files: mail/lumail : Makefile distinfo mail/lumail/patches: patch-src_bindings_cc Log message: Update lumail to 0.26 CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/09/16 18:33:42 Modified files: faq : index.html Log message: add 6.2.9 to recent updates CVSROOT: /cvs Module name: www Changes by: nick@cvs.openbsd.org 2014/09/16 18:39:41 Modified files: papers : index.html Log message: there's a video here, too, from Daniel Jakots, (vigdis at chown dot me), thanks! CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2014/09/16 18:42:54 Modified files: share/man/man7 : mdoc.7 Log message: Five year old typo reported by Theo Buehler at math dot ethz dot ch, thanks. I nearly asked: ``What's wrong with it? It formats as "intended".'' (However, what Kristaps intended to write was "indented".) CVSROOT: /cvs Module name: ports Changes by: daniel@cvs.openbsd.org 2014/09/16 18:46:13 Modified files: math/py-numpy : Makefile distinfo math/py-numpy/patches: patch-numpy_core_include_numpy_npy_common_h patch-numpy_distutils_command_build_src_py powerpc-patch-numpy_distutils_fcompiler_gnu_py math/py-numpy/pkg: PLIST Added files: math/py-numpy/patches: patch-numpy_core_tests_test_umath_py Removed files: math/py-numpy/patches: patch-numpy_f2py___init___py patch-numpy_f2py_f2py2e_py