The init file of darkstat is creating the pid in /var/empty and
setting the owner of the directory to darkstat which is incompatible
with sshd as sshd requires /var/empty to be owned by root and not
group or world-writable. See issue #12420.
This corrects the problem by creating another directory: /var/darkstat
instead without setting the owner, which is not actually required.
Compile tested: not applicable as the changes do not involve
compilation.
Tested on my home router running darkstat.
Signed-off-by: Jean-Michel Lacroix <lacroix@lepine-lacroix.info>
Tidy up some minor patch fuzz with a refresh.
Also tweak the linux makefile to make it run on macosx and linux:
install only understand -m for filemode, not that the openwrt staging
dir understands file modes. Also glibc>2.17 so patch out the check that
otherwise barfs a number of errors from a missing 'ldd' command under
macos.
Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
Bump host Cython version as well.
Add note near PKG_VERSION to remember to periodically update it.
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
Changes since the v0.11 release:
Fix stack overflow buffering out-of-sequence streams.
Fix possible divide-by-zero.
Fix issues with seeking in the win32 backend.
Fix an issue where the seek algorithm could be confused by stream data changing between reads.
Clean up compiler and scan-build warnings.
Avoid use of the deprecated ftime() function which has Y2038 problems.
Remove undefined behaviour memcpy(NULL) in op_read_native().
Visual Studio project files updated for libogg 1.3.4 library name change.
Various build systems updates.
Various integration and testing environment improvements.
Signed-off-by: Eduardo Abinader <eduardoabinader@gmail.com>
When listening to a udp port an Illegal instruction occurs.
This did NOT happen when compiled with debug on.
Fixes issue openwrt#4747, FS#2937
Signed-off-by: Rick Frankland <rfrankla@yahoo.com>
ABI_VERSION is used in Package/libtiffxx/install but not defined, so we
don't get SONAME treatment for libtiffxx. This commit adds the missing
ABI_VERSION.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Compiled and run in x86_64.
Changes:
-Define CK_ATTRIBUTE_FORMAT for GCC >= 2.95.3, to make use of ‘gnu_printf’ format attribute
-Refactor tests to fix signed - unsigned conversions
-Refactor some Check internals to use proper interger types
Signed-off-by: Eduardo Abinader <eduardoabinader@gmail.com>
- Add initial Makefile
- Add patch to fix inttypes.h inclusion when __kernel_timespec is unavailable
Signed-off-by: Christian Lachner <gladiac@gmail.com>
This adds PKG_BUILD_PARALLEL:=0 to packages that depend on host Python
packages (HOST_PYTHON3_PACKAGE_BUILD_DEPENDS), because installing
packages with multiple concurrent pip processes can lead to errors or
unexpected results[1].
This also:
* Move HOST_PYTHON3_PACKAGE_BUILD_DEPENDS definitions to before
python3-package.mk is included
* Update Python folder readme to include PKG_BUILD_PARALLEL:=0
[1]: https://github.com/pypa/pip/issues/2361
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Switch to meson as autotools support was removed.
Adjustment for consistency between packages.
Reorder plugins based on meson_options.txt order.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Updated options.
Removed deinterlace plugin as it's failing to build.
Reorganized plugin list based on meson_options.txt order.
Signed-off-by: Rosen Penev <rosenp@gmail.com>