aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * | | | | | | libmicrohttpd: get rid of OpenSSL dependencyDaniel Golle2015-06-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Depending on both, GnuTLS and OpenSSL doesn't make sense, we should use either TLS implementation but not both. Use GnuTLS for now and get rid of OpenSSL dependency by explicitely telling the package's build-system to do so using CONFIGURE_ARGS. If future uses of libmicrohttpd require OpenSSL, it probably makes most sense to build several variants of the package, i.e. libmicrohttpd-openssl as well as libmicrohttpd-gnutls. As with most packages making use of any TLS implementation, these are build-time decissions resulting in conflicting variants of the same package which cannot be installed simultanously. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
| * | | | | | | libmicrohttpd: update sourceDaniel Golle2015-06-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | | Merge pull request #1469 from jow-/squid-musl-compatLuka Perkov2015-06-25
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | squid: fix musl compatibility
| * | | | | | | | squid: fix musl compatibilityJo-Philipp Wich2015-06-25
| | |_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change `sys/signal.h` include to just `signal.h`. The build otherwise fails due to `-Werror` with the following message: In file included from rfcnb-io.c:43:0: .../staging_dir/toolchain-mipsel_mips32_gcc-4.8-linaro_musl-1.1.10/include/sys/signal.h:1:2: error: #warning redirecting incorrect #include <sys/signal.h> to <signal.h> [-Werror=cpp] #warning redirecting incorrect #include <sys/signal.h> to <signal.h> ^ cc1: all warnings being treated as errors Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | | | | | snort: add maintainer and SPDX license infoLuka Perkov2015-06-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* | | | | | | | Merge pull request #1470 from jow-/snort-hardening-fixLuka Perkov2015-06-25
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | snort: fix build with CONFIG_PKG_CHECK_FORMAT_SECURITY
| * | | | | | | | snort: fix build with CONFIG_PKG_CHECK_FORMAT_SECURITYJo-Philipp Wich2015-06-25
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The configure script incorrectly mangles `CFLAGS` by attempting to remove `-Werror` from it, thus turning `-Werror=format-security` into just `=format-security` which will cause subsequent autoconf tests to fail. Patch out the custom `CFLAGS` mangling to fix the build. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | | | | | minicom: fix full language supportÁlvaro Fernández Rojas2015-06-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes https://github.com/openwrt/packages/issues/1467 Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* | | | | | | | Merge pull request #1472 from psycho-nico/for-upstreamTed Hess2015-06-25
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | libv4l: fix musl compatibility on 64-bits
| * | | | | | | | libv4l: fix musl compatibility on 64-bitsNicolas Thill2015-06-25
| | |_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Nicolas Thill <nico@openwrt.org>
* | | | | | | | Merge pull request #1468 from jow-/sstp-client-musl-compatJo-Philipp Wich2015-06-25
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | sstp-client: fix musl compatibility
| * | | | | | | | sstp-client: fix musl compatibilityJo-Philipp Wich2015-06-25
| | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Ship a `net/ppp_defs.h` replacement header since musl does not provide one but `pppd/pppd.h` provided by pppd is needing it. - Add missing `sys/types.h` includes Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | | | | | Merge pull request #1466 from jow-/usbip-musl-compatNuno Goncalves2015-06-25
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | | usb: fix musl compatibility
| * | | | | | | usb: fix musl compatibilityJo-Philipp Wich2015-06-25
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace the nonstandard `SIGCLD` signal name with the proper `SIGCHLD` spelling as the `SIGCLD` alias is not provided by musl. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | / / / / / Merge pull request #1461 from chris5560/masterSteven Barth2015-06-24
|\| | | | | | | |/ / / / / |/| | | | | ddns-scripts: fix/update to version 2.4.3-1
| * | | | | ddns-scripts: fix/update to version 2.4.3-1Christian Schoenebeck2015-06-24
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fixed sed when filtering IP address from nslookup output because "Server:" block might have multiple address lines. Thanks to Arjen de Korte Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
* | / / / hiredis: add new packageDaniel Golle2015-06-24
| |/ / / |/| | | | | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | Merge pull request #1407 from jow-/wifidog-musl-compatJo-Philipp Wich2015-06-24
|\ \ \ \ | | | | | | | | | | wifidog: fix musl compatibility
| * | | | wifidog: fix musl compatibilityJo-Philipp Wich2015-06-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fix missing `fcntl.h` in `protocol.c` - Replace nonstandard `sys/unistd.h` includes with `unistd.h` ones Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | | Merge pull request #1387 from jow-/etherwake-musl-compatJo-Philipp Wich2015-06-24
|\ \ \ \ \ | | | | | | | | | | | | etherwake: fix musl compatibility
| * | | | | etherwake: fix musl compatibilityJo-Philipp Wich2015-06-16
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Always include net/ethernet.h instead linux specific headers, fixes compilation with musl libc. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | | Merge pull request #1333 from br101/masterSteven Barth2015-06-24
|\ \ \ \ \ | | | | | | | | | | | | bluez: Add bluez-daemon package
| * | | | | bluez: Add bluez-daemon packageBruno Randolf2015-06-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move bluetoothd and related programs and files from bluez-utils into bluez-daemon package. The main motivation for this is to remove the dependency to DBus from bluez-utils. The utilities like "hcitool" are useful without it. Also add kmod-bluetooth dependency to bluez-utils, as the utils don't make much sense without bluetooth support in the kernel. Signed-off-by: Bruno Randolf <br1@einfach.org>
* | | | | | Merge pull request #1425 from jow-/mtr-musl-compatJonathan McCrohan2015-06-23
|\ \ \ \ \ \ | | | | | | | | | | | | | | mtr: switch to upstream "newdns" branch
| * | | | | | mtr: switch to upstream "newdns" branchJo-Philipp Wich2015-06-18
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Switch the mtr package to the upstream `newdns` git branch. This will fix compilation on Glibc, uClibc and musl without requiring further patches. Note that the base version of this branch is 0.85, not 0.86 so the lower version number is intentional. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | | | strongswan: add more exceptions to musl-fixesSteven Barth2015-06-23
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Steven Barth <steven@midlink.org>
* | | | | | Merge branch 'ulogd-musl-compat'Nicolas Thill2015-06-23
|\ \ \ \ \ \
| * | | | | | Merge branch 'ulogd-musl-compat' of git://github.com/jow-/packages into ↵Nicolas Thill2015-06-23
|/| | | | | | | | | | | | | | | | | | | | | | | | | | | ulogd-musl-compat
| * | | | | | ulogd: fix musl compatibilityJo-Philipp Wich2015-06-18
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Avoid non-pointer use of `FILE` type since its just a forward declaration - Build with -D_GNU_SOURCE to expose required `struct tcphdr` members Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | | | Merge branch 'jow--keepalived-musl-compat'Nicolas Thill2015-06-23
|\ \ \ \ \ \
| * | | | | | Merge branch 'keepalived-musl-compat' of git://github.com/jow-/packages into ↵Nicolas Thill2015-06-23
|/| | | | | | | | | | | | | | | | | | | | | | | | | | | jow--keepalived-musl-compat
| * | | | | | keepalived: fix musl compatibilityJo-Philipp Wich2015-06-17
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add missing sys/types.h include to provide u_short type under musl Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | | | Merge branch 'paulfertser-macchanger-musl-fix'Nicolas Thill2015-06-23
|\ \ \ \ \ \
| * | | | | | Merge branch 'macchanger-musl-fix' of git://github.com/paulfertser/packages ↵Nicolas Thill2015-06-23
|/| | | | | | | | | | | | | | | | | | | | | | | | | | | into paulfertser-macchanger-musl-fix
| * | | | | | macchanger: fix build with muslPaul Fertser2015-06-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | According to netdevice(7) ifr_data is a "char *", not caddr_t. Signed-off-by: Paul Fertser <fercerpav@gmail.com>
* | | | | | | erlang: fix musl compatibilityNicolas Thill2015-06-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | gethostbyname_r is available when _GNU_SOURCE is defined, add a patch to check for it instead of __GLIBC__, build with -D_GNU_SOURCE, bump release number Signed-off-by: Nicolas Thill <nico@openwrt.org>
* | | | | | | Merge pull request #1436 from ManoftheSea/musl-compatNoah Meyerhans2015-06-22
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | | Make ipsec-tools compatible with musl
| * | | | | | ipsec-tools: Make compatible with muslDerek LaHousse2015-06-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Based on changes at http://git.alpinelinux.org/cgit/aports/plain/main/ipsec-tools/musl-cdefs.patch Removed references to "login" and "logout" functions, as musl utmp doesn't. Bump PKG_RELEASE Signed-off-by: Derek LaHousse <dlahouss@mtu.edu>
* | | | | | | Merge pull request #1421 from Zokormazo/bwm-ngSteven Barth2015-06-22
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | bwm-ng: Fix building with gcc-security enabled
| * \ \ \ \ \ \ Merge remote-tracking branch 'upstream/master' into bwm-ngJulen Landa Alustiza2015-06-18
| |\ \ \ \ \ \ \
| * | | | | | | | bwm-ng: fix building with gcc-security enabledJulen Landa Alustiza2015-06-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julen Landa Alustiza <julen@zokormazo.info>
* | | | | | | | | Merge pull request #1380 from mickeprag/masterSteven Barth2015-06-22
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | python-crcmod: new package
| * | | | | | | | | python-crcmod: new packageMicke Prag2015-06-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Micke Prag <micke.prag@telldus.se>
* | | | | | | | | | Merge pull request #1369 from kissg1988/seafileSteven Barth2015-06-22
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | seafile: build against libevhtp 1.1 instead of 1.2
| * | | | | | | | | | seafile: build against libevhtp 1.1 instead of 1.2Gergely Kiss2015-06-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes multiple issues like upload/download problems on seahub and also makes it possible to use the new HTTP syncing feature which doesn't work with libevhtp 1.2.10 at all.
* | | | | | | | | | | Merge pull request #1368 from kissg1988/libevhtp-1.1Steven Barth2015-06-22
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | libevhtp-1.1: package added
| * | | | | | | | | | | libevhtp-1.1: package addedGergely Kiss2015-06-14
| |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | seafile-server seems to have compatibility issues with the 1.2 branch of libevtp. This package makes it possible to build seafile against a supported version, 1.1.7.
* | | | | | | | | | | haproxy: upstream fixesheil2015-06-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - [PATCH 15/18] MEDIUM: ssl: replace standards DH groups with custom - [PATCH 16/18] BUG/MINOR: debug: display (null) in place of "meth" - [PATCH 17/18] CLEANUP: deinit: remove codes for cleaning - [PATCH 18/18] BUG/MINOR: ssl: fix smp_fetch_ssl_fc_session_id Signed-off-by: heil <heil@terminal-consulting.de>
* | | | | | | | | | | Merge pull request #1437 from mstorchak/luaposixTed Hess2015-06-22
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | luaposix: fix compatibility with musl
| * | | | | | | | | | | luaposix: fix compatibility with muslMaxim Storchak2015-06-22
| | |_|_|_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Maxim Storchak <m.storchak@gmail.com>