network/palemoon: Updated for version 28.7.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
42b5c74260
commit
bb591077bf
|
@ -0,0 +1,43 @@
|
|||
--- tools/profiler/tasktracer/GeckoTaskTracer.cpp 2019-08-23 01:47:27.000000000 +0200
|
||||
+++ tools/profiler/tasktracer/GeckoTaskTracer.cpp 2019-08-29 18:02:44.541959971 +0200
|
||||
@@ -25,20 +25,14 @@
|
||||
#if defined(__GLIBC__)
|
||||
#include <unistd.h>
|
||||
#include <sys/syscall.h>
|
||||
-static inline pid_t gettid()
|
||||
-{
|
||||
- return (pid_t) syscall(SYS_gettid);
|
||||
-}
|
||||
+#define gettid() static_cast<pid_t>(syscall(SYS_gettid))
|
||||
#elif defined(XP_MACOSX)
|
||||
#include <unistd.h>
|
||||
#include <sys/syscall.h>
|
||||
-static inline pid_t gettid()
|
||||
-{
|
||||
- return (pid_t) syscall(SYS_thread_selfid);
|
||||
-}
|
||||
+#define gettid() static_cast<pid_t>(syscall(SYS_thread_selfid))
|
||||
#elif defined(LINUX)
|
||||
#include <sys/types.h>
|
||||
-pid_t gettid();
|
||||
+#pid_t gettid();
|
||||
#endif
|
||||
|
||||
// NS_ENSURE_TRUE_VOID() without the warning on the debug build.
|
||||
|
||||
|
||||
--- js/src/jsnativestack.cpp 2019-08-29 17:45:10.000000000 +0200
|
||||
+++ js/src/jsnativestack.cpp 2019-08-29 17:53:58.382003265 +0200
|
||||
@@ -26,11 +26,7 @@
|
||||
# include <sys/syscall.h>
|
||||
# include <sys/types.h>
|
||||
# include <unistd.h>
|
||||
-static pid_t
|
||||
-gettid()
|
||||
-{
|
||||
- return syscall(__NR_gettid);
|
||||
-}
|
||||
+# define gettid() static_cast<pid_t>(syscall(__NR_gettid))
|
||||
# endif
|
||||
|
||||
#else
|
|
@ -26,7 +26,7 @@
|
|||
# Special thanks to Ponce
|
||||
|
||||
PRGNAM=palemoon
|
||||
VERSION=${VERSION:-28.7.0}
|
||||
VERSION=${VERSION:-28.7.1}
|
||||
SRCNAM=${SRCNAM:-UXP-PM${VERSION}_Release}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
@ -83,7 +83,6 @@ elif [ "$BRANDING" = "unstable" ]; then
|
|||
BRANDING="--disable-official-branding --with-branding=application/palemoon/branding/unstable"
|
||||
fi
|
||||
|
||||
|
||||
rm -rf $PKG $TMP/gold $TMP/$OBJ
|
||||
mkdir -p $TMP $PKG $OUTPUT $TMP/gold $TMP/$OBJ
|
||||
|
||||
|
@ -150,6 +149,11 @@ if [ "${ADNAUSEAM:-block}" = "unblock" ]; then
|
|||
patch -p1 < $CWD/adNauseam-unblock.patch
|
||||
fi
|
||||
|
||||
# Selectively APPLY patch for glibc 2.30+
|
||||
if [ "${PATCH_GLIBC:-no}" = "yes" ]; then
|
||||
patch -p0 < $CWD/glibc-2.30+.patch
|
||||
fi
|
||||
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
PRGNAM="palemoon"
|
||||
VERSION="28.7.0"
|
||||
VERSION="28.7.1"
|
||||
HOMEPAGE="http://www.palemoon.org/"
|
||||
DOWNLOAD="https://github.com/MoonchildProductions/UXP/archive/PM28.7.0_Release/UXP-PM28.7.0_Release.tar.gz \
|
||||
DOWNLOAD="https://github.com/MoonchildProductions/UXP/archive/PM28.7.1_Release/UXP-PM28.7.1_Release.tar.gz \
|
||||
http://ponce.cc/slackware/sources/repo/autoconf-2.13.tar.xz"
|
||||
MD5SUM="d187d401e5eee834b46135b000201297 \
|
||||
MD5SUM="55ccedaeb2a3a808d3bc425064d43c16 \
|
||||
f2994d302cf736e7e71974edfa51da3c"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
|
|
Loading…
Reference in New Issue