aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | | | | | | | | | nut: refactor nut-monitor uci config filePascal Coudurier2022-01-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Convert notifyflags options to lists as supported by the init script, so multiple options can be chosen. Add SYSLOG default option to individuals notifyflags instead of deprecated flag 1|0. Add comment for defaultnotify and individuals notifyflags about possible values. Signed-off-by: Pascal Coudurier <coudu@wanadoo.fr>
* | | | | | | | | | nut: fix typo in nut-monitor init scriptPascal Coudurier2022-01-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes a typo in the nut-monitor init script when building config file from uci config. Signed-off-by: Pascal Coudurier <coudu@wanadoo.fr>
* | | | | | | | | | luasql: fix build on macosSergey V. Lobanov2022-01-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | luasql ./config scripts checks `uname -s` output and changes LIB_OPTION from '-static' to macos specific if detected OS is Darwin. These flags are not compatible with GCC OpenWrt is always Linux, this patch removes Darwin specific stuff from compilation flags Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | | | | | | | | | micropython-lib: Update to latest masterJeffery To2022-01-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The last tagged release (v1.9.3) was in 2017. This updates the package to the most recent commit of the master branch. This also sets myself at the maintainer. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | | | | | | | micropython: Update to 1.17, reorganize packageJeffery To2022-01-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previous versions used a bundled version of the axTLS library. The MicroPython project maintains their own fork[1], as development of the library appears to have stopped (the last release was version 2.1.5 in 2019[2]). This replaces the use of axTLS with two variants, one using mbedTLS and one with no TLS support (and no upip, as it uses the ussl module). The external mbedTLS patch (040-extmod-use-external-mbedtls.patch) comes from Debian[3]. This also sets myself as the maintainer. [1]: https://github.com/micropython/axtls [2]: https://sourceforge.net/projects/axtls/files/ [3]: https://salsa.debian.org/yangfl-guest/micropython/-/blob/master/debian/patches/0006-extmod-Use-system-mbedtls.patch Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | | | | | | | lynx: fix build on macosSergey V. Lobanov2022-01-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | lynx uses host C-compiler to build internal utility that is used to generate files required for target build. On MacOS it uses internal clang with MacOS system headers so host build fails due to MacOS is not Linux Forced to use OpenWrt host C compiler using --with-build-* ./configure flags Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | | | | | | | | | ntpd: Fix compile with glibc 2.34Hauke Mehrtens2022-01-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a patch from Open embedded to fix compilation with glibc 2.34. This patch was taken from here: https://github.com/openembedded/meta-openembedded/blob/master/meta-networking/recipes-support/ntp/ntp/0001-libntp-Do-not-use-PTHREAD_STACK_MIN-on-glibc.patch It fixes the following build problem: work_thread.c:45:57: error: missing binary operator before token "(" 45 | #if defined(PTHREAD_STACK_MIN) && THREAD_MINSTACKSIZE < PTHREAD_STACK_MIN | ^~~~~~~~~~~~~~~~~ make[7]: *** [Makefile:892: work_thread.o] Error 1 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
* | | | | | | | | | golang: Update to 1.17.6Jeffery To2022-01-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | | | | | | | radsecproxy: Fix compile with glibc 2.34Hauke Mehrtens2022-01-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This backports a patch from upstream radsecproxy to fix compilation with glibc 2.34. It fixes the following build problem: radsecproxy.h:35:5: error: missing binary operator before token "(" 35 | #if PTHREAD_STACK_MIN > PTHREAD_STACK_SIZE | ^~~~~~~~~~~~~~~~~ make[5]: *** [Makefile:623: dtls.o] Error 1 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
* | | | | | | | | | libmodbus: update to 3.1.7Michael Heimpold2022-01-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | | | | | | | wg-installer: generate new keys for every connectionNick Hainke2022-01-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Generate new keys on every new connection. Signed-off-by: Nick Hainke <vincent@systemli.org>
* | | | | | | | | | mblaze: fix build on macosSergey V. Lobanov2022-01-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | redefine OS=Linux due to OpenWrt is always Linux Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | | | | | | | | | stubby: explicitly disable static linkingRui Salvaterra2022-01-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Although undocumented, there's a way to explicitly disable static linking in Stubby, setting the CMake build option ENABLE_GETDNS_STATIC_LINK to OFF (ON by default). Make it so. Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
* | | | | | | | | | rpcsvc-proto: bump to 1.4.3Georgi Valkov2022-01-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes: rpcgen build (host-compile) on macOS https://github.com/openwrt/packages/pull/17430 https://github.com/openwrt/openwrt/pull/4638 Signed-off-by: Georgi Valkov <gvalkov@abv.bg>
* | | | | | | | | | Merge pull request #17535 from hgl/ddns-cloudflareFlorian Eckert2022-01-11
|\ \ \ \ \ \ \ \ \ \ | | |_|_|_|/ / / / / | |/| | | | | | | | ddns-scripts-cloudflare: allow explicit zone_id
| * | | | | | | | | ddns-scripts-cloudflare: allow explicit zone_idGlen Huang2022-01-10
| | |_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When zone id is explicitly provided, there is no need for the API token to have read permission. Inspired by acme.sh's cloudflare logic. Signed-off-by: Glen Huang <heyhgl@gmail.com>
* | | | | | | | | gerbera: fix build on macosSergey V. Lobanov2022-01-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cmake LINK_WHAT_YOU_USE is not supported on macos, disable it if macos is used to build gerbera package compiled binary (sha256sum) exactly the same on macos and ubuntu Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | | | | | | | | bash: update to 5.1.16Huangbin Zhan2022-01-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
* | | | | | | | | bash: add /etc/profile.d/sys_bashrc.sh as conffileHuangbin Zhan2022-01-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
* | | | | | | | | wg-installer: fix using symlinks for conf filesNick Hainke2022-01-11
| |/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It is useful to symlink babeld and olsrd to /tmp/ if we frequently write to those config files. Signed-off-by: Nick Hainke <vincent@systemli.org>
* | | | | | | | iputils: bump to 20211215Noah Meyerhans2022-01-10
| |_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Drop the tftpd binary, which is no longer provided upstream. Users should switch to the atftp server as a replacement. Avoid executing runtime tests, which are not supported in cross-build environments. Signed-off-by: Noah Meyerhans <frodo@morgul.net>
* | | | | | | stunnel: add missing sessionResume optionFlorian Eckert2022-01-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The option sessionResume was added in version 5.60 https://www.stunnel.org/NEWS.html Signed-off-by: Florian Eckert <fe@dev.tdt.de>
* | | | | | | Merge pull request #17341 from erdoukki/fail2ban-2to3Jeffery To2022-01-10
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | | fail2ban: fix 2to3 error
| * | | | | | fail2ban: fix 2to3 errorKerma Gérald2022-01-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue: 2to3 support has been removed in setuptools since version 58.0.0. Fix: openwrt/packages#17311 Requirements: 2to3/host openwrt/packages#17429 Add upstream patch: https://github.com/fail2ban/fail2ban/commit/196c55e93103d1e56d1336f27a5f2591b4e54fef To install/build for python3 from source, it is necessary to convert to py3 codebase before setup (invoke 2to3 or ./fail2ban-2to3 firstly). > ./fail2ban-2to3 > python3 setup.py build Signed-off-by: Kerma Gérald <gandalf@gk2.net>
* | | | | | | wg-installer: fix cleanup scriptNick Hainke2022-01-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The wrong function was called. Signed-off-by: Nick Hainke <vincent@systemli.org>
* | | | | | | postfix: Fix compile with glibc 2.34Hauke Mehrtens2022-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a patch from Open embedded to fix compilation with glibc 2.34. This patch was taken from here: https://github.com/openembedded/meta-openembedded/blob/master/meta-networking/recipes-daemons/postfix/files/0007-correct-signature-of-closefrom-API.patch It fixes the following build problem: /builder/shared-workdir/build/sdk/staging_dir/toolchain-arc_arc700_gcc-11.2.0_glibc/include/unistd.h:366:13: error: conflicting types for 'closefrom'; have 'void(int)' 366 | extern void closefrom (int __lowfd) __THROW; | ^~~~~~~~~ In file included from attr_clnt.c:87: ./sys_defs.h:1511:12: note: previous declaration of 'closefrom' with type 'int(int)' 1511 | extern int closefrom(int); | ^~~~~~~~~ make: *** [Makefile:192: attr_clnt.o] Error 1 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
* | | | | | | haproxy: Update HAProxy to v2.4.10Christian Lachner2022-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Update haproxy download URL and hash - Updated upstream patches Signed-off-by: Christian Lachner <gladiac@gmail.com>
* | | | | | | nnn: update to version 4.4Josef Schlehofer2022-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refreshed patch Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* | | | | | | python3-paramiko: update to version 2.9.2Javier Marcet2022-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - [Bug]: Enhanced log output when connecting to servers that do not support server-sig-algs extensions, making the new-as-of-2.9 defaulting to SHA2 pubkey algorithms more obvious when it kicks in. - [Bug]: Connecting to servers which support server-sig-algs but which have no overlap between that list and what a Paramiko client supports, now raise an exception instead of defaulting to rsa-sha2-512 (since the use of server-sig-algs allows us to know what the server supports). Signed-off-by: Javier Marcet <javier@marcet.info>
* | | | | | | python-pynacl: update to v1.5.0Javier Marcet2022-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Javier Marcet <javier@marcet.info>
* | | | | | | docker-compose: Update to version 2.2.3Javier Marcet2022-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | What's Changed - compose images should list images of created containers by @kiniou - Ignore missing (swarm) overlay networks by @ndeloof - Remove intermediate containers when build succeeded in classic build by @notok - compose ps: fix typo "unknow" -> "unknown" by @webignition - Add 2 modes test mechanism by @ulyssessouza - Handle "stop" event by @ndeloof - Only kill running containers by @ulyssessouza - compose cp doesn't need a full project and can copy from stopped containers by @ndeloof - Add dependabot by @ulyssessouza - Do not try to guess when to allocate a TTY and keep it as default by @ulyssessouza - Bump github.com/golang/mock from 1.5.0 to 1.6.0 by @dependabot - Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 by @dependabot - Bump github.com/hashicorp/go-multierror from 1.1.0 to 1.1.1 by @dependabot - Bump github.com/buger/goterm from 1.0.0 to 1.0.3 by @dependabot - Propagate GroupAdd from ServiceConfig to HostConfig by @lancechentw - Bump github.com/containerd/console from 1.0.2 to 1.0.3 by @dependabot - Bump github.com/AlecAivazis/survey/v2 from 2.2.3 to 2.3.2 by @dependabot - Added volume bind option SELinux label :z :Z by @tymonx - Downgrade goterm to 1.0.1 by @ulyssessouza Signed-off-by: Javier Marcet <javier@marcet.info>
* | | | | | | telegraf: Update package to version 1.21.2Jonathan Pagel2022-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jonathan Pagel <jonny_tischbein@systemli.org>
* | | | | | | erlang: update to version 24.2Sergey V. Lobanov2022-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. updated to 24.2 (RN: https://github.com/erlang/otp/releases/tag/OTP-24.2) 2. added libstdcpp dependency 3. erlang-hipe was removed in upstream (ref https://github.com/erlang/otp/commit/fccb8482efc47bf2e48911564df502f087cce5ed) everything related to erlang-hipe was removed from Makefile 4. updated and refreshed patches 5. host-compile ssl library forced to OpenWrt LibreSSL to avoid using system library Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | | | | | | crowdsec-firewall-bouncer: update to 0.0.21Kerma Gérald2022-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update crowdsec-firewall-bouncer to latest upstream release version 0.0.21 Makefile rework - use tagged version for download Fixes - set API_KEY in firewall bouncer config file Signed-off-by: Kerma Gérald <gandalf@gk2.net>
* | | | | | | krb5: fix build on macosSergey V. Lobanov2022-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | backport of upstream commit https://github.com/krb5/krb5/commit/3c66c1fec7ce4edeff284a5e4abe32d0b4398539 Original author: Nikhil Benesch <nikhil.benesch@gmail.com> Remove unnecessary flag in macOS build The configuration logic for adding the `-search_paths_first` linker flag on Darwin does not correctly handle cross compilation. It should check the value of $krb5_cv_host rather than `uname -s` to detect when the compilation target is Darwin, rather than the build machine. It turns out `-search_paths_first` has been the default behavior of ld on macOS since XCode 4. So just remove that bit of logic entirely. (The flag was added in commit acd27af0e845f8b93de2e226cc2ec9ac8af52077 in 2004; XCode 4 was released in 2010.) Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | | | | | | transmission: add ca_bundle support with procd-ujailMatthew Hagan2022-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With procd-ujail enabled, it is not possible to use HTTPS URLs, for example when either for downloading torrent files or blocklists. The followig example occurs when downloading a URL from the "Upload Torrent Files" dialogue box: Error adding "https://releases.ubuntu.com/21.10/ubuntu-21.10-desktop-amd64.iso.torrent": gotMetadataFromURL: http error 0: No Response syslog will also hint that no CA_BUNDLE is being used: transmission-daemon[6683]: [2021-12-30 20:01:30.990] web will verify tracker certs using envvar CURL_CA_BUNDLE: none (web.c:455) This patch rectifies this issue by adding a ca_bundle configurable, enabled by default. This explicitly fixes the ca_bundle file location to /etc/ssl/certs/ca-certificates.crt and adds this file to the procd jail. On subsequent testing, HTTPS URL download functionality is restored. Signed-off-by: Matthew Hagan <mnhagan88@gmail.com>
* | | | | | | Merge pull request #17551 from stangri/master-curlStan Grishin2022-01-09
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | curl: update to 7.81.0
| * | | | | | | curl: update to 7.81.0Stan Grishin2022-01-09
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: https://curl.se/changes.html#7_81_0 Signed-off-by: Stan Grishin <stangri@melmac.ca>
* | | | | | | Merge pull request #17441 from commodo/django4Alexandru Ardelean2022-01-09
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | django: bump to version 4.0.1
| * | | | | | | django: bump to version 4.0.1Alexandru Ardelean2022-01-09
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | | / haveged: update to 1.9.17Hannu Nyman2022-01-09
| |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update havged to version 1.9.17. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | | | | | bossa: fix build on macosSergey V. Lobanov2022-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | override OS=Linux Makefile variable to support building on macos Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | | | | | wg-installer: fix typo in cleanup functionNick Hainke2022-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The delete variable was misspelled leading to devices always being removed although they had connected neighbors. Signed-off-by: Nick Hainke <vincent@systemli.org>
* | | | | | wg-installer: add cleanup scriptNick Hainke2022-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add script to cleanup unused wireguard interfaces. Signed-off-by: Nick Hainke <vincent@systemli.org>
* | | | | | Merge pull request #17531 from neheb/1Alexandru Ardelean2022-01-09
|\ \ \ \ \ \ | | | | | | | | | | | | | | fuse: fix compilation with recent glibc
| * | | | | | fuse: fix compilation with recent glibcRosen Penev2022-01-08
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | closefrom is implemented now. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | Merge pull request #17532 from neheb/2Alexandru Ardelean2022-01-09
|\ \ \ \ \ \ | |/ / / / / |/| | | | | bluez: fix compilation with glibc
| * | | | | bluez: fix compilation with glibcRosen Penev2022-01-08
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | sync() is implemented now. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | Revert "pdns-recursor: temp"Rosen Penev2022-01-08
| | | | | | | | | | | | | | | | | | | | This reverts commit 96e355836db7b83c4b1d46217a745be93ca019cb.
* | | | | pdns-recursor: tempRosen Penev2022-01-08
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>