Browse Source

fix SYS_SECCOMP error on recent android versions.

android-5
its-pointless 6 years ago
committed by Fredrik Fornwall
parent
commit
29670c1c69
  1. 1
      packages/gnuplot/build.sh
  2. 11
      packages/gnuplot/plot.c.patch

1
packages/gnuplot/build.sh

@ -7,6 +7,7 @@ TERMUX_PKG_SRCURL=https://downloads.sourceforge.net/project/gnuplot/gnuplot/${TE
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--without-x --with-lua=no --with-bitmap-terminals" TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--without-x --with-lua=no --with-bitmap-terminals"
TERMUX_PKG_DEPENDS="libandroid-support, readline, pango, libgd" TERMUX_PKG_DEPENDS="libandroid-support, readline, pango, libgd"
TERMUX_PKG_HOSTBUILD=yes TERMUX_PKG_HOSTBUILD=yes
TERMUX_PKG_REVISION=1
termux_step_host_build() { termux_step_host_build() {
"$TERMUX_PKG_SRCDIR/configure" "$TERMUX_PKG_SRCDIR/configure"

11
packages/gnuplot/plot.c.patch

@ -0,0 +1,11 @@
--- ./src/plot.c.orig 2019-02-08 21:42:42.500914619 +0000
+++ ./src/plot.c 2019-02-08 21:43:56.702190583 +0000
@@ -281,7 +281,7 @@
#endif
/* make sure that we really have revoked root access, this might happen if
gnuplot is compiled without vga support but is installed suid by mistake */
-#ifdef __linux__
+#if defined(__linux__) && !defined(__ANDROID__)
if (setuid(getuid()) != 0) {
fprintf(stderr,"gnuplot: refusing to run at elevated privilege\n");
exit(EXIT_FAILURE);
Loading…
Cancel
Save