[>]
http://marc.info/?l=openbsd-ports-cvs&m=140840924805025&w=2
obsd.info.14
openbsd-ports-cvs(obsdave,2) — All
2014-08-19 04:55:11
> 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
...
> - unbreak sparc64
...
"Disable broken Sparc64 bn_mul assembly (found by Florian Obser)."
ooh, /me looks around for the powerdns update diff :)
[>]
http://marc.info/?l=openbsd-cvs&m=140840961805109&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-19 05:55:06
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@
[>]
http://marc.info/?l=openbsd-cvs&m=140842555708237&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-19 09:55:07
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@
[>]
http://marc.info/?l=openbsd-ports-cvs&m=140842773908673&w=2
obsd.info.14
openbsd-ports-cvs(obsdave,2) — All
2014-08-19 10:55:13
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
[>]
http://marc.info/?l=openbsd-cvs&m=140843555810729&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-19 12:55:09
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.
[>]
http://marc.info/?l=openbsd-ports-cvs&m=140843594410830&w=2
obsd.info.14
openbsd-ports-cvs(obsdave,2) — All
2014-08-19 12:55:12
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
[>]
http://marc.info/?l=openbsd-cvs&m=140844257012955&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-19 14:55:09
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@
[>]
http://marc.info/?l=openbsd-ports-cvs&m=140844509313850&w=2
obsd.info.14
openbsd-ports-cvs(obsdave,2) — All
2014-08-19 14:55:12
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
[>]
http://marc.info/?l=openbsd-cvs&m=140844685714442&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-19 15:55:16
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;
}
[>]
http://marc.info/?l=openbsd-cvs&m=140845110416114&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-19 16:55:07
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@
[>]
http://marc.info/?l=openbsd-cvs&m=140845254016547&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-19 16:55:11
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).
[>]
http://marc.info/?l=openbsd-cvs&m=140845264916583&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-19 16:55:12
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@
[>]
http://marc.info/?l=openbsd-cvs&m=140845736618486&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-19 18:55:09
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).
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
[>]
http://marc.info/?l=openbsd-cvs&m=140846686422854&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-19 20:55:14
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.
[>]
http://marc.info/?l=openbsd-ports-cvs&m=140846658422718&w=2
obsd.info.14
openbsd-ports-cvs(obsdave,2) — All
2014-08-19 20:55:16
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@
[>]
http://marc.info/?l=openbsd-cvs&m=140846936023943&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-19 21:55:08
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.
[>]
http://marc.info/?l=openbsd-cvs&m=140847036424453&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-19 21:55:10
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@.
[>]
http://marc.info/?l=openbsd-cvs&m=140847092524695&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-19 22:55:08
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@
[>]
http://marc.info/?l=openbsd-cvs&m=140847490326303&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-19 23:55:09
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.
[>]
http://marc.info/?l=openbsd-cvs&m=140847506626360&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-19 23:55:10
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.