aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* perl-lwp-mediatypes: New packageMarcel Denia2015-06-30
| | | | Signed-off-by: Marcel Denia <naoir@gmx.net>
* perl-http-negotiate: New packageMarcel Denia2015-06-30
| | | | Signed-off-by: Marcel Denia <naoir@gmx.net>
* perl-http-date: New packageMarcel Denia2015-06-30
| | | | Signed-off-by: Marcel Denia <naoir@gmx.net>
* perl-http-daemon: New packageMarcel Denia2015-06-30
| | | | Signed-off-by: Marcel Denia <naoir@gmx.net>
* perl-http-cookies: New packageMarcel Denia2015-06-30
| | | | Signed-off-by: Marcel Denia <naoir@gmx.net>
* perl-file-listing: New packageMarcel Denia2015-06-30
| | | | Signed-off-by: Marcel Denia <naoir@gmx.net>
* perl-encode-locale: New packageMarcel Denia2015-06-30
| | | | Signed-off-by: Marcel Denia <naoir@gmx.net>
* gnutls: backport upstream --with-ca-path implementationDaniel Golle2015-06-29
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* gnurl: fall-back on default system trust storeDaniel Golle2015-06-29
| | | | | | | | | | | | If no explicit CA file is given, gnurl fails to setup HTTPS connections as it doesn't looks for certificates in /etc/ssl/certs/ in any way. Fix that by utilizing GnuTLS' gnutls_certificate_set_x509_system_trust as a fall-back if neither CA file, CA path nor SRP is declared. Reported upstream: https://github.com/bagder/curl/issues/330 Fix suggested upstream: https://github.com/bagder/curl/pull/331 Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* aiccu: fix uClibc build after #1389Jo-Philipp Wich2015-06-29
| | | | Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* libnet-1.2.x: fix uClibc regression caused by #1410Jo-Philipp Wich2015-06-29
| | | | Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* Merge pull request #1494 from ejurgensen/masterSteven Barth2015-06-29
|\ | | | | forked-daapd: fix build problem after pr #1475
| * forked-daapd: fix build problem after pr #1475ejurgensen2015-06-28
| | | | | | | | | | | | | | The upgraded forked-daapd required some more pregenerated ANTLR3 files, but I forgot to add them to the patch. They are included here. Signed-off-by: Espen Jürgensen <espenjurgensen+openwrt@gmail.com>
* | Merge pull request #1499 from obsy/masterSteven Barth2015-06-29
|\ \ | | | | | | [packages] vsftpd: CVE-2015-1419 Unspecified vulnerability in vsftp …
| * | [packages] vsftpd: CVE-2015-1419 Unspecified vulnerability in vsftp 3.0.2 ↵Cezary Jackiewicz2015-06-28
|/ / | | | | | | and earlier allows remote attackers to bypass access restrictions via unknown vectors, related to deny_file parsing.
* | gnunet: update sourceDaniel Golle2015-06-28
| | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | libinput: update sourceDaniel Golle2015-06-28
| | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | libevdev: update sourceDaniel Golle2015-06-28
| | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | Merge pull request #1492 from tru7/linknxJo-Philipp Wich2015-06-28
|\ \ | | | | | | linknx: fix musl compatibility
| * | linknx: fix musl compatibilityOthmar Truniger2015-06-27
| | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
* | | Merge pull request #1491 from tru7/knxdJo-Philipp Wich2015-06-28
|\ \ \ | | | | | | | | knxd: fix musl compatibility
| * | | knxd: fix musl compatibilityOthmar Truniger2015-06-27
| |/ / | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
* | | Merge pull request #1479 from jow-/pthsem-musl-compatJo-Philipp Wich2015-06-28
|\ \ \ | | | | | | | | pthsem: fix musl and fortify source compatibility
| * | | pthsem: fix musl and fortify source compatibilityJo-Philipp Wich2015-06-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit addresses two issues encountered while building pthsem for x86_64/musl: 1) Autoconf incorrectly assumes a broken Glibc and thus falls back to Linux compatibility code which runs into an unsupported platform error with musl libc. Since musl provides a proper implementation of `sigaltstack(2)`, force configure to use the POSIX compliant code when musl libc is used. 2) The `pth_syscall.c` file undefines various libc function names which breaks the indirection set up by fortify-source headers, therefore forcibly disable fortify source in the OpenWrt Makefile. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | Merge pull request #1486 from jow-/ntpd-fortify-source-compatNuno Goncalves2015-06-28
|\ \ \ \ | | | | | | | | | | ntpd: fix fortify source compatibility
| * | | | ntpd: fix fortify source compatibilityJo-Philipp Wich2015-06-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The ntpd package ships autoconf macros which attempt to test for the C99 compliance of `snprintf()` and `vsnprintf()`. Those macros unconditionally consider the functions not compliant in a cross compile setting and therfore break all subsequent configure tests because the `snprintf` and `vsnprintf` symbols are shadowed with `#define` directives redirecting them to their respectiv gnulib replacements. The fortify source headers in turn will `#undef` those defines when wrapping the associated functions and therfore cause all `conftest` programs to emit a failure. Pass the required magic autoconf cache variables via `CONFIGURE_VARS` to let `./configure` assume C99 compliance of the affected functions, thus fixing the build. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | | Merge pull request #1484 from jow-/ntripclient-musl-compatNuno Goncalves2015-06-28
|\ \ \ \ \ | |_|_|/ / |/| | | | ntripclient: fix musl comaptibility
| * | | | ntripclient: fix musl comaptibilityJo-Philipp Wich2015-06-26
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | Add missing `sys/select.h` include to `ntripclient.c` to provide declarations for `struct timeval` and `fd_set` under musl. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | screen: remove leftover Makefile codeJo-Philipp Wich2015-06-27
| | | | | | | | | | | | | | | | Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | screen: fix autoconf misdetectionJo-Philipp Wich2015-06-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The configure script shipped by screen uses the presence of `elf.h` and `-lelf` as indicator for an SVR4 system which implies a `#define BUGGYGETLOGIN`. The SVR4 `getlogin()` replacement function does not compile with a musl toolchain and we do not want it anyway, so patch configure to remove the broken SVR4 detection logic. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | Merge pull request #1439 from mstorchak/iodineJo-Philipp Wich2015-06-27
|\ \ \ \ | | | | | | | | | | iodine: fix musl compatibility
| * | | | iodine: fix musl compatibilityMaxim Storchak2015-06-25
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
* | | | | Merge pull request #1483 from jow-/open-plc-utils-musl-compatJo-Philipp Wich2015-06-27
|\ \ \ \ \ | | | | | | | | | | | | open-plc-utils: fix musl and fortify source compatibility
| * | | | | open-plc-utils: fix musl and fortify source compatibilityJo-Philipp Wich2015-06-26
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Include `poll.h` at the top of `ether/readpacket.c` to avoid nested declaration errors caused by fortify source headers - Add missing `sys/select.h` include to `serial/serial.c` Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | | vpnc-scripts: bumped versionNikos Mavrogiannopoulos2015-06-27
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | | Merge pull request #1489 from nmav/dnsNikos Mavrogiannopoulos2015-06-27
|\ \ \ \ \ | | | | | | | | | | | | vpnc-script: handle multiple servers in INTERNAL_IP_DNS vars
| * | | | | vpnc-script: handle multiple servers in INTERNAL_IP_DNS varsNikos Mavrogiannopoulos2015-06-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolves #1372 Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | | | Merge pull request #1488 from thess/mpd-0.19-workTed Hess2015-06-26
|\ \ \ \ \ \ | | | | | | | | | | | | | | mpd: Upgrade to 0.19.10, refresh patches
| * | | | | | mpd: Upgrade to 0.19.10, refresh patchesTed Hess2015-06-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* | | | | | | Merge pull request #1487 from thess/boost-build-fixTed Hess2015-06-26
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | boost: force build of meta-package to satisfy other package dependencies
| * | | | | | | boost: force build of meta-package to satisfy other package dependenciesTed Hess2015-06-26
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* | | | | | | Merge pull request #1460 from cjkoenig/update_mpcTed Hess2015-06-26
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | mpc: update to 0.27
| * | | | | | mpc: update to 0.27Christoph König2015-06-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Christoph Koenig <christoph.koenig@gmail.com>
* | | | | | | haproxy: bugfix release 1.5.13heil2015-06-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Released version 1.5.13 with the following main changes : - BUG/MINOR: check: fix tcpcheck error message - CLEANUP: deinit: remove codes for cleaning p->block_rules - DOC: Update doc about weight, act and bck fields in the statistics - MINOR: ssl: add a destructor to free allocated SSL ressources - BUG/MEDIUM: ssl: fix tune.ssl.default-dh-param value being overwritten - MEDIUM: ssl: replace standards DH groups with custom ones - BUG/MINOR: debug: display (null) in place of "meth" - BUG/MINOR: cfgparse: fix typo in 'option httplog' error message - BUG/MEDIUM: cfgparse: segfault when userlist is misused - BUG/MEDIUM: stats: properly initialize the scope before dumping stats - BUG/MEDIUM: http: don't forward client shutdown without NOLINGER except for tunnels - CLEANUP: checks: fix double usage of cur / current_step in tcp-checks - BUG/MEDIUM: checks: do not dereference head of a tcp-check at the end - CLEANUP: checks: simplify the loop processing of tcp-checks - BUG/MAJOR: checks: always check for end of list before proceeding - BUG/MEDIUM: checks: do not dereference a list as a tcpcheck struct - BUG/MEDIUM: peers: apply a random reconnection timeout - BUG/MINOR: ssl: fix smp_fetch_ssl_fc_session_id - MEDIUM: init: don't stop proxies in parent process when exiting - MINOR: peers: store the pointer to the signal handler - MEDIUM: peers: unregister peers that were never started - MEDIUM: config: propagate the table's process list to the peers sections - MEDIUM: init: stop any peers section not bound to the correct process - MEDIUM: config: validate that peers sections are bound to exactly one process - MAJOR: peers: allow peers section to be used with nbproc > 1 - DOC: relax the peers restriction to single-process - CLEANUP: config: fix misleading information in error message. - MINOR: config: report the number of processes using a peers section in the error case - BUG/MEDIUM: config: properly compute the default number of processes for a proxy Signed-off-by: heil <heil@terminal-consulting.de>
* | | | | | | net-snmp: fix musl compatibilityJo-Philipp Wich2015-06-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixup `iwlib.h` to not consider an musl environment to be an unsupported platform. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | | | | Merge pull request #1480 from jow-/postfix-musl-compatJo-Philipp Wich2015-06-26
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | postfix: fix musl compatibility
| * | | | | | | postfix: fix musl compatibilityJo-Philipp Wich2015-06-26
| | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The current package patches `makedefs` to probe for the existance of the `nsl` and `resolv` libraries but uses the wrong variables for the prefix, leading to `makedefs` probing the host directories, not the staging dir ones. Replace `$PKG_BUILD_DIR` with `$STAGING_DIR` to perform the library tests in the correct directory. Fixes the following error spotted by doing test builds against musl which does not provide a `libnsl`: .../mips-openwrt-linux-musl/bin/ld: cannot find -lnsl collect2: error: ld returned 1 exit status make: *** [master] Error 1 Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | | | | Merge pull request #1464 from jow-/c-ares-fortify-source-fixJo-Philipp Wich2015-06-26
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | | c-ares: fix build with CONFIG_PKG_FORTIFY_SOURCE*
| * | | | | | c-ares: fix build with CONFIG_PKG_FORTIFY_SOURCE*Jo-Philipp Wich2015-06-25
| | |_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When fortify source is enabled, the c-ares configure script will abort with: configure: CFLAGS error: CFLAGS may only be used to specify C compiler flags, not macro definitions. Use CPPFLAGS for: -D_FORTIFY_SOURCE=1 Change the OpenWrt Makefile to move any -D flags from TARGET_CFLAGS to TARGET_CPPFLAGS in order to satisfy `configure`. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | | | lm-sensors: fix musl compatibilityJo-Philipp Wich2015-06-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Only use `asm/io.h` for uClibc, else include `sys/io.h` Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>