13666 Commits

Author SHA1 Message Date
pascal
2e83fe2e6d Update to tor 0.3.1.7; disable LZMA support. Earlier diff by Klemens Nanni. 2017-10-05 12:59:07 +00:00
kirby
66e3916212 update to seafile-6.1.1 2017-10-05 11:37:31 +00:00
rsadowski
4ef5be0c28 update tinc to 1.0.32 2017-10-04 20:51:36 +00:00
sthen
b652eb0839 update to LibreNMS 1.32 2017-10-04 20:47:14 +00:00
sthen
41c5623d40 switch unifi over to the 5.6 branch (5.6.18) 2017-10-04 20:43:23 +00:00
sthen
374dee5d10 Fix a crash in libnetsnmp client, occurring in some circumstances where
a local IP address is set. Cause is a use-after-free, OpenBSD's malloc
helpfully often picks these up early (with relatively low impact on
performance), often turning what would be a hidden bug into a likely
crash.

Reported and analysis from Andrea Biscuola of Zabbix,
https://support.zabbix.com/browse/ZBX-12726
https://sourceforge.net/p/net-snmp/bugs/2803/

Diff from me. I was going to wait for confirmation from Andrea that it
fixes the issue, but having read more of the code I'm confident that this
change or something like it is needed, so committing now to make it pre 6.2.
ok naddy
2017-09-29 22:49:41 +00:00
jca
9ba97f6bee SECURITY update to openvpn-2.4.4
Among other changes, fix for

o CVE-2017-12166: out of bounds write in key-method 1
  https://community.openvpn.net/openvpn/wiki/CVE-2017-12166

ok sthen@
2017-09-29 16:36:23 +00:00
dcoppa
6230dad6f9 Fix another three nested functions 2017-09-27 14:03:26 +00:00
dcoppa
0d0797bb14 Unbreak autoconf check with clang by not using nested functions 2017-09-27 11:22:43 +00:00
dcoppa
ef8b885f1e Use the right autoconf invocation as per gnu.port.mk 2017-09-27 11:03:27 +00:00
dcoppa
6162be5649 Unbreak autoconf checks with clang by not using nested functions 2017-09-27 10:35:22 +00:00
dcoppa
889e49cff3 Unbreak autoconf check with clang by not using nested functions
Regen patches while here
2017-09-27 09:50:00 +00:00
phessler
83057ddad1 compile fix for arm64. bump revision, because a header file is changed.
OK sthen@
2017-09-27 08:13:00 +00:00
dcoppa
be738ee4a4 Unbreak autoconf check with clang by not using nested functions 2017-09-27 06:25:58 +00:00
ajacoutot
583a001647 Update to py-botocore-1.7.18. 2017-09-27 05:51:31 +00:00
dcoppa
1f840b3575 Unbreak autoconf check for va_copy() with clang by not using nested
functions
2017-09-26 14:25:57 +00:00
dcoppa
af76245915 Unbreak autoconf check with clang by not using nested functions 2017-09-26 14:17:16 +00:00
sthen
0e8d2773d7 sync wantlib 2017-09-25 21:33:08 +00:00
ajacoutot
6b387869db Update to py-libcloud-2.2.1. 2017-09-25 17:12:46 +00:00
ajacoutot
5fbf2477c1 Update to py-botocore-1.7.16. 2017-09-25 17:10:49 +00:00
jca
499879e197 Avoid nested function in waf test
Innocuous, but changes the actual output of a command (smbd -b), so
bump.
2017-09-25 13:26:52 +00:00
danj
9588ab636f Update to weechat-1.9.1, fixes CVE-2017-14727
Date/time conversion specifiers are expanded after replacing buffer
local variables in name of log files. In some cases, this can lead to
an error in function strftime and a crash caused by the use of an
uninitialized buffer.

ok jca@, "that should go in" sthen@
2017-09-25 13:00:05 +00:00
sthen
6780b15bfc use AC_LANG_SOURCE instead of AC_LANG_PROGRAM to avoid a nested function
definition
2017-09-25 12:41:07 +00:00
robert
d267cd02ca Unbreak autoconf checks with clang by not using nested functions
in the checks.

Someone clearly did not read the autoconf documentation because
using the following functions with a function declaration inside
the body will end up declaring a function inside a function.

- AC_TRY_COMPILE( [], [ int main() { return 0; } ],
- AC_LANG_PROGRAM([[]], [[int main (void) { return 0; }]])],
- AC_TRY_LINK([], [int main (void) { return 0; }],

Result:

int
main ()
{
int main (void) { return 0; }
  ;
  return 0;
}

nested functions is a gcc extension which is not supported by
clang.

test.c:4:17: error: function definition is not allowed here
int main (void) { return 0; }
                ^
1 error generated.

This causes tests to fail in the configure scripts resulting in
missing compile and link time flags from the builds.

This resulted in weird behaviour of several software, like gnome
hanging completely due to gtk+3 not being built properly.

This change intrudces the following fixes:

- remove int main() declaration from AC_TRY_COMPILE, AC_LANG_PROGRAM, AC_TRY_LINK
  as it comes with a declaration already, and people misused them

- change to use AC_LANG_SOURCE when needed in case a complete source block is specified

Most of the changes are in configure.(ac|in), however there were some cases
where autoconf is either broken or the build failed because of an autoconf
generated configure script. Everytihng else is switched to autoconf, so
the maintainers can go ahead and upstream these diffs.

There are more to come, we are continously checking the tree for these issues
and in the future the infrastructure will error if such a case is found.
2017-09-25 09:16:12 +00:00
sthen
c081612477 missed bump 2017-09-24 10:44:56 +00:00
kili
f95288adce Move gpg-error to the otr wantlib.
spotted by naddy, ok sthen
2017-09-23 23:11:35 +00:00
jca
1c71931c58 SECURITY update to samba-4.5.14
o  CVE-2017-12150 (SMB1/2/3 connections may not require signing where
   they should)
o  CVE-2017-12151 (SMB3 connections don't keep encryption across DFS
   redirects)
o  CVE-2017-12163 (Server memory information leak over SMB1)
2017-09-23 22:59:18 +00:00
sthen
9bf44cf1b3 sync GNOMEish WANTLIBs 2017-09-23 11:41:31 +00:00
sthen
78b43f6a85 sync wantlib 2017-09-23 11:33:48 +00:00
sthen
b0600caa40 add c to WANTLIB for perl XS modules 2017-09-23 10:51:07 +00:00
sthen
282e97bedd use COMPILER_LIBCXX for c++abi (objc) 2017-09-23 10:41:27 +00:00
sthen
b0ba1b1705 ncurses->ncursesw 2017-09-23 10:32:00 +00:00
sthen
975ad9de13 sync wantlib 2017-09-23 10:19:18 +00:00
sthen
d4c1661ce3 fix WANTLIB (existing wantlib was in the wrong place so the WANTLIB+= didn't
work)
2017-09-23 10:13:19 +00:00
rsadowski
2b5ba3d5e2 Drop gettext MODULE, sync WANTLIB
Based on the diff of Markus Hennecke (Maintainer).

lib depends, REVISION tweaks and ok jca@
2017-09-23 07:41:13 +00:00
sthen
2f245ea74d WANTLIB+=m for a bunch of things (chasing sqlite3 fts5 addition) 2017-09-22 21:37:18 +00:00
sthen
4990bcbeee add a bunch of missing unistring deps 2017-09-22 20:52:58 +00:00
sthen
e946defd41 add a symlink to the location where icinga2's ITL definition for this check
expects to find it
2017-09-21 20:28:08 +00:00
sthen
f397fc5856 update to icinga2-2.7.1 2017-09-21 17:17:24 +00:00
ajacoutot
a01a852c66 Update to py-botocore-1.7.14. 2017-09-20 06:27:12 +00:00
dcoppa
b29320a9de Drop gettext module 2017-09-19 18:28:27 +00:00
ajacoutot
bd902034c2 Update to py-botocore-1.7.13. 2017-09-19 08:32:37 +00:00
akoshibe
da4ed4522c Enable mininet. OK phessler@ sthen@ 2017-09-18 22:23:29 +00:00
sthen
3910ff8613 - add hidden dep on archivers/snappy
- reinstate gtk version, req by tb@
- install mime/appdata files, missing from the !gtk build
2017-09-18 13:41:32 +00:00
jca
0b267664fe Update to samba-4.5.13, the latest release of the 4.5.x series
Putting this in now to help handle future possible security issues on
the 6.2 branch.  Tested by Ian McWilliam.
2017-09-18 11:52:04 +00:00
jca
cedb5e690e Update to wifind-0.7
from maintainer Ray Lai
2017-09-16 23:32:03 +00:00
dcoppa
2e7954cc7b Drop gettext module 2017-09-16 14:55:27 +00:00
ajacoutot
ccd5932340 Update to py-botocore-1.7.12. 2017-09-16 06:47:20 +00:00
akoshibe
099661ec5e Move examples to /usr/local/share/examples.
Fix for bug introduced in last revision

OK phessler@
2017-09-16 06:03:05 +00:00
ajacoutot
3f9f319dc9 Update to py-botocore-1.7.11. 2017-09-15 07:14:45 +00:00