mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 02:21:15 +02:00
add node 14
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# $FreeBSD: head/Mk/Uses/go.mk 512187 2019-09-16 20:55:08Z dmgk $
|
||||
# $FreeBSD: head/Mk/Uses/go.mk 531678 2020-04-14 12:52:02Z dmgk $
|
||||
#
|
||||
# This file contains logic to ease porting of Go binaries using the
|
||||
# `go` command.
|
||||
@@ -12,8 +12,8 @@
|
||||
# in modules-aware mode.
|
||||
# no_targets Indicates that Go is needed at build time as a part of
|
||||
# make/CMake build. This will setup build environment like
|
||||
# GO_ENV, GO_BUILDFLAGS but will not create post-extract, do-build
|
||||
# and do-install targets.
|
||||
# GO_ENV, GO_BUILDFLAGS but will not create post-extract and
|
||||
# do-{build,install,test} targets.
|
||||
# run Indicates that Go is needed at run time and adds it to
|
||||
# RUN_DEPENDS.
|
||||
#
|
||||
@@ -21,19 +21,19 @@
|
||||
#
|
||||
# GO_PKGNAME
|
||||
# The name of the package when building in GOPATH mode. This
|
||||
# is the directory that will be created in GOPATH/src and seen
|
||||
# by the `go` command. If not set explicitly and GH_SUBDIR or
|
||||
# GL_SUBDIR is present, GO_PKGNAME will be inferred from it.
|
||||
# is the directory that will be created in ${GOPATH}/src. If not set
|
||||
# explicitly and GH_SUBDIR or GL_SUBDIR is present, GO_PKGNAME will
|
||||
# be inferred from it.
|
||||
# It is not needed when building in modules-aware mode.
|
||||
#
|
||||
# GO_TARGET
|
||||
# The packages to build. If not set explicitly, defaults to
|
||||
# GO_PKGNAME. GO_TARGET can also be a tuple in the form
|
||||
# package:path where path can be either a simple filename or a
|
||||
# full path starting with ${PREFIX}. Specifying a full path
|
||||
# like ${PREFIX}/sbin/binary will install the resulting binary
|
||||
# as ${PREFIX}/sbin/binary. Using just simple filename is a
|
||||
# shortcut to installing it as ${PREFIX}/bin/filename.
|
||||
# The packages to build. The default value is ${GO_PKGNAME}.
|
||||
# GO_TARGET can also be a tuple in the form package:path where path can be
|
||||
# either a simple filename or a full path starting with ${PREFIX}.
|
||||
#
|
||||
# GO_TESTTARGET
|
||||
# The packages to test. The default value is `./...` (the current package
|
||||
# and all subpackages).
|
||||
#
|
||||
# CGO_CFLAGS
|
||||
# Additional CFLAGS variables to be passed to the C compiler by the `go`
|
||||
@@ -44,7 +44,10 @@
|
||||
# command
|
||||
#
|
||||
# GO_BUILDFLAGS
|
||||
# Additional build arguments to be passed to the `go install` command
|
||||
# Additional build arguments to be passed to the `go build` command
|
||||
#
|
||||
# GO_TESTFLAGS
|
||||
# Additional build arguments to be passed to the `go test` command
|
||||
#
|
||||
# GO_PORT
|
||||
# The Go port to use. By default this is lang/go but can be set
|
||||
@@ -62,6 +65,7 @@ IGNORE= USES=go has invalid arguments: ${go_ARGS:Nmodules:Nno_targets:Nrun}
|
||||
.endif
|
||||
|
||||
# Settable variables
|
||||
|
||||
.if empty(GO_PKGNAME)
|
||||
. if !empty(GH_SUBDIR)
|
||||
GO_PKGNAME= ${GH_SUBDIR:S|^src/||}
|
||||
@@ -71,19 +75,28 @@ GO_PKGNAME= ${GL_SUBDIR:S|^src/||}
|
||||
GO_PKGNAME= ${PORTNAME}
|
||||
. endif
|
||||
.endif
|
||||
|
||||
GO_TARGET?= ${GO_PKGNAME}
|
||||
GO_TESTTARGET?= ./...
|
||||
|
||||
GO_BUILDFLAGS+= -v -buildmode=exe
|
||||
.if !defined(WITH_DEBUG) && empty(GO_BUILDFLAGS:M-ldflags*)
|
||||
GO_BUILDFLAGS+= -ldflags=-s
|
||||
.endif
|
||||
GO_TESTFLAGS+= -v
|
||||
|
||||
CGO_ENABLED?= 1
|
||||
CGO_CFLAGS+= -I${LOCALBASE}/include
|
||||
CGO_LDFLAGS+= -L${LOCALBASE}/lib
|
||||
|
||||
.if ${ARCH} == armv6 || ${ARCH} == armv7
|
||||
GOARM?= ${ARCH:C/armv//}
|
||||
.endif
|
||||
|
||||
# Read-only variables
|
||||
|
||||
GO_CMD= ${LOCALBASE}/bin/go
|
||||
GO_WRKDIR_BIN= ${WRKDIR}/bin
|
||||
|
||||
GO_ENV+= CGO_ENABLED=${CGO_ENABLED} \
|
||||
CGO_CFLAGS="${CGO_CFLAGS}" \
|
||||
CGO_LDFLAGS="${CGO_LDFLAGS}" \
|
||||
@@ -91,17 +104,19 @@ GO_ENV+= CGO_ENABLED=${CGO_ENABLED} \
|
||||
|
||||
.if ${go_ARGS:Mmodules}
|
||||
GO_BUILDFLAGS+= -mod=vendor
|
||||
GO_TESTFLAGS+= -mod=vendor
|
||||
GO_WRKSRC= ${WRKSRC}
|
||||
GO_ENV+= GOPATH="" \
|
||||
GOBIN="${GO_WRKDIR_BIN}"
|
||||
GOBIN="${GO_WRKDIR_BIN}" \
|
||||
GO_NO_VENDOR_CHECKS=1
|
||||
.else
|
||||
GO_WRKDIR_SRC= ${WRKDIR}/src
|
||||
GO_WRKSRC= ${GO_WRKDIR_SRC}/${GO_PKGNAME}
|
||||
GO_WRKSRC= ${WRKDIR}/src/${GO_PKGNAME}
|
||||
GO_ENV+= GOPATH="${WRKDIR}" \
|
||||
GOBIN=""
|
||||
.endif
|
||||
|
||||
GO_PORT?= lang/go
|
||||
|
||||
BUILD_DEPENDS+= ${GO_CMD}:${GO_PORT}
|
||||
.if ${go_ARGS:Mrun}
|
||||
RUN_DEPENDS+= ${GO_CMD}:${GO_PORT}
|
||||
@@ -149,17 +164,36 @@ do-install:
|
||||
done
|
||||
.endif
|
||||
|
||||
.if !target(do-test) && empty(go_ARGS:Mno_targets)
|
||||
do-test:
|
||||
(cd ${GO_WRKSRC}; \
|
||||
for t in ${GO_TESTTARGET}; do \
|
||||
${ECHO_MSG} "===> Testing $${t}"; \
|
||||
${SETENV} ${MAKE_ENV} ${GO_ENV} ${GO_CMD} test ${GO_TESTFLAGS} $${t}; \
|
||||
done)
|
||||
.endif
|
||||
|
||||
# Helper targets for port maintainers
|
||||
|
||||
.if ${go_ARGS:Mmodules}
|
||||
_MODULES2TUPLE_CMD= modules2tuple
|
||||
gomod-vendor: patch
|
||||
@if type ${_MODULES2TUPLE_CMD} > /dev/null 2>&1; then \
|
||||
cd ${WRKSRC}; ${GO_CMD} mod vendor; \
|
||||
[ -r vendor/modules.txt ] && ${_MODULES2TUPLE_CMD} vendor/modules.txt; \
|
||||
else \
|
||||
${ECHO_MSG} "===> Please install \"ports-mgmt/modules2tuple\""; \
|
||||
gomod-vendor-deps:
|
||||
@if ! type ${GO_CMD} > /dev/null 2>&1; then \
|
||||
${ECHO_MSG} "===> Please install \"${GO_PORT}\""; exit 1; \
|
||||
fi; \
|
||||
if ! type ${_MODULES2TUPLE_CMD} > /dev/null 2>&1; then \
|
||||
${ECHO_MSG} "===> Please install \"ports-mgmt/modules2tuple\""; exit 1; \
|
||||
fi
|
||||
|
||||
gomod-vendor: gomod-vendor-deps patch
|
||||
@cd ${WRKSRC}; ${SETENV} GOPATH=${WRKDIR}/.gopath GOFLAGS=-modcacherw ${GO_CMD} mod vendor; \
|
||||
[ -r vendor/modules.txt ] && ${_MODULES2TUPLE_CMD} vendor/modules.txt
|
||||
|
||||
gomod-vendor-diff: gomod-vendor-deps patch
|
||||
@cd ${WRKSRC}; ${SETENV} GOPATH=${WRKDIR}/.gopath GOFLAGS=-modcacherw ${GO_CMD} mod vendor; \
|
||||
[ -r vendor/modules.txt ] && ${_MODULES2TUPLE_CMD} vendor/modules.txt | ${SED} 's|GH_TUPLE=| |; s| \\$$||' | ${GREP} -v ' \\' > ${WRKDIR}/GH_TUPLE-new.txt && \
|
||||
echo ${GH_TUPLE} | ${TR} -s " " "\n" | ${SED} "s|^| |" > ${WRKDIR}/GH_TUPLE-old.txt && \
|
||||
${DIFF} ${WRKDIR}/GH_TUPLE-old.txt ${WRKDIR}/GH_TUPLE-new.txt || exit 0
|
||||
.endif
|
||||
|
||||
.endif # defined(_POSTMKINCLUDED) && !defined(_INCLUDE_USES_GO_POST_MK)
|
||||
|
||||
43
_oldver/npm613/Makefile
Normal file
43
_oldver/npm613/Makefile
Normal file
@@ -0,0 +1,43 @@
|
||||
# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
||||
# $FreeBSD: head/www/npm/Makefile 454516 2017-11-20 04:30:31Z sunpoet $
|
||||
|
||||
PORTNAME= npm
|
||||
PORTVERSION= 6.13.7 #6.12.1
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= LOCAL/sunpoet
|
||||
|
||||
MAINTAINER= sunpoet@FreeBSD.org
|
||||
COMMENT= Node package manager
|
||||
|
||||
RUN_DEPENDS= gmake:devel/gmake
|
||||
RUN_DEPENDS+= node>=8:lang/node13
|
||||
|
||||
CONFLICTS_INSTALL= npm2 npm3 npm4
|
||||
|
||||
NO_ARCH= yes
|
||||
NO_BUILD= yes
|
||||
REINPLACE_ARGS= -i ''
|
||||
USES= python:2.7,run shebangfix tar:xz
|
||||
SHEBANG_GLOB= *.py
|
||||
SHEBANG_FILES= lib/node_modules/npm/node_modules/node-gyp/gyp/samples/samples
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${ARCH} == "i386"
|
||||
# Workaround for kernel bug 178881
|
||||
EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-bug-178881
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|' ${WRKSRC}/etc/man.d/npm.conf
|
||||
${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' ${WRKSRC}/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp
|
||||
${FIND} ${WRKSRC}/ -name '*.sh' -exec ${REINPLACE_CMD} -e '1 s|/usr/local|${LOCALBASE}|' {} +
|
||||
|
||||
do-install:
|
||||
cd ${WRKSRC}/ && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/
|
||||
|
||||
post-install:
|
||||
${CHMOD} a+x ${STAGEDIR}${PREFIX}/lib/node_modules/npm/bin/*
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
#EOF
|
||||
3
_oldver/npm613/distinfo
Normal file
3
_oldver/npm613/distinfo
Normal file
@@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1573736128
|
||||
SHA256 (npm-6.12.1.tar.xz) = 1e7b08a90383895776afe402c2041f134520308aa885add97baf0cd473975ef8
|
||||
SIZE (npm-6.12.1.tar.xz) = 3415212
|
||||
23
_oldver/npm613/files/extra-patch-bug-178881
Normal file
23
_oldver/npm613/files/extra-patch-bug-178881
Normal file
@@ -0,0 +1,23 @@
|
||||
--- lib/node_modules/npm/lib/config/defaults.js.orig 1985-10-26 08:15:00 UTC
|
||||
+++ lib/node_modules/npm/lib/config/defaults.js
|
||||
@@ -378,19 +378,7 @@ exports.types = {
|
||||
}
|
||||
|
||||
function getLocalAddresses () {
|
||||
- var interfaces
|
||||
- // #8094: some environments require elevated permissions to enumerate
|
||||
- // interfaces, and synchronously throw EPERM when run without
|
||||
- // elevated privileges
|
||||
- try {
|
||||
- interfaces = os.networkInterfaces()
|
||||
- } catch (e) {
|
||||
- interfaces = {}
|
||||
- }
|
||||
-
|
||||
- return Object.keys(interfaces).map(
|
||||
- nic => interfaces[nic].map(({address}) => address)
|
||||
- ).reduce((curr, next) => curr.concat(next), []).concat(undefined)
|
||||
+ return [ '127.0.0.1', undefined ]
|
||||
}
|
||||
|
||||
exports.shorthands = {
|
||||
5
_oldver/npm613/pkg-descr
Normal file
5
_oldver/npm613/pkg-descr
Normal file
@@ -0,0 +1,5 @@
|
||||
npm is a package manager for node. You can use it to install and publish your
|
||||
node programs. It manages dependencies and does other cool stuff.
|
||||
|
||||
WWW: https://www.npmjs.com/package/npm
|
||||
WWW: https://github.com/npm/npm
|
||||
5036
_oldver/npm613/pkg-plist
Normal file
5036
_oldver/npm613/pkg-plist
Normal file
File diff suppressed because it is too large
Load Diff
@@ -39,6 +39,8 @@ MAKE_ARGS+= --libc++
|
||||
MAKE_ARGS+= --runtime-hardening=on
|
||||
MAKE_ARGS+= --disable-warnings-as-errors
|
||||
MAKE_ARGS+= VERBOSE=on
|
||||
MAKE_ARGS+= AR=${PREFIX}/bin/gar
|
||||
|
||||
|
||||
MONGO_OWNER= mongodb
|
||||
MONGO_OWNER_ID= 922
|
||||
|
||||
32
data/mongodb42-tools/Makefile
Normal file
32
data/mongodb42-tools/Makefile
Normal file
@@ -0,0 +1,32 @@
|
||||
# $FreeBSD: head/databases/mongodb42-tools/Makefile 545576 2020-08-21 08:57:31Z lwhsu $
|
||||
|
||||
PORTNAME= mongodb42-tools
|
||||
DISTVERSIONPREFIX= r
|
||||
DISTVERSION= 4.2.9
|
||||
CATEGORIES= databases
|
||||
|
||||
MAINTAINER= ronald-lists@klop.ws
|
||||
COMMENT= Tools for MongoDB 4.2.x
|
||||
|
||||
ONLY_FOR_ARCHS= aarch64 amd64 armv7 i386
|
||||
ONLY_FOR_ARCHS_REASON= not yet ported to other architectures
|
||||
|
||||
USES= compiler:c++14-lang go localbase
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= mongodb
|
||||
GH_PROJECT= mongo-tools
|
||||
|
||||
GO_BUILDFLAGS= -tags "${USE_MY_TAGS}"
|
||||
GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT}
|
||||
|
||||
GO_TARGET+=./bsondump/main:bsondump
|
||||
GO_TARGET+=./mongodump/main:mongodump
|
||||
GO_TARGET+=./mongoexport/main:mongoexport
|
||||
GO_TARGET+=./mongofiles/main:mongofiles
|
||||
GO_TARGET+=./mongoimport/main:mongoimport
|
||||
GO_TARGET+=./mongoreplay/main:mongoreplay
|
||||
GO_TARGET+=./mongorestore/main:mongorestore
|
||||
GO_TARGET+=./mongostat/main:mongostat
|
||||
GO_TARGET+=./mongotop/main:mongotop
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
data/mongodb42-tools/distinfo
Normal file
3
data/mongodb42-tools/distinfo
Normal file
@@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1601380928
|
||||
SHA256 (mongodb-mongo-tools-r4.2.9_GH0.tar.gz) = b08871164d5ae74567eb4fcdfc7bdc5d6767a7428b8efa4623f6a66ce7d57450
|
||||
SIZE (mongodb-mongo-tools-r4.2.9_GH0.tar.gz) = 15026903
|
||||
@@ -0,0 +1,9 @@
|
||||
--- vendor/github.com/10gen/openssl/build.go.orig 2018-11-21 19:00:22 UTC
|
||||
+++ vendor/github.com/10gen/openssl/build.go
|
||||
@@ -20,5 +20,6 @@
|
||||
// #cgo CFLAGS: -Wno-deprecated-declarations
|
||||
// #cgo windows CFLAGS: -DWIN32_LEAN_AND_MEAN -I"c:/openssl/include"
|
||||
// #cgo windows LDFLAGS: -lssleay32 -llibeay32 -lcrypt32 -L "c:/openssl/bin"
|
||||
+// #cgo freebsd LDFLAGS: -lssl -lcrypto
|
||||
// #cgo darwin LDFLAGS: -framework CoreFoundation -framework Foundation -framework Security
|
||||
import "C"
|
||||
@@ -0,0 +1,11 @@
|
||||
--- vendor/github.com/10gen/openssl/init_posix.go.orig 2018-11-21 17:52:58 UTC
|
||||
+++ vendor/github.com/10gen/openssl/init_posix.go
|
||||
@@ -12,7 +12,7 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
-// +build linux darwin cgo
|
||||
+// +build linux darwin freebsd cgo
|
||||
// +build !windows
|
||||
|
||||
package openssl
|
||||
6
data/mongodb42-tools/pkg-descr
Normal file
6
data/mongodb42-tools/pkg-descr
Normal file
@@ -0,0 +1,6 @@
|
||||
Since MongoDB 3.2, the tools bsondump, mongoimport, mongoexport, mongodump,
|
||||
mongorestore, mongostat, mongofiles and mongotop have been placed
|
||||
in a separate package and rewritten in Go. These are useful utilities for
|
||||
managing a MongoDB instance.
|
||||
|
||||
WWW: https://github.com/mongodb/mongo-tools
|
||||
9
data/mongodb42-tools/pkg-plist
Normal file
9
data/mongodb42-tools/pkg-plist
Normal file
@@ -0,0 +1,9 @@
|
||||
bin/bsondump
|
||||
bin/mongodump
|
||||
bin/mongoexport
|
||||
bin/mongofiles
|
||||
bin/mongoimport
|
||||
bin/mongoreplay
|
||||
bin/mongorestore
|
||||
bin/mongostat
|
||||
bin/mongotop
|
||||
78
data/mongodb42/Makefile
Normal file
78
data/mongodb42/Makefile
Normal file
@@ -0,0 +1,78 @@
|
||||
# $FreeBSD: head/databases/mongodb36/Makefile 483807 2018-11-02 13:32:34Z rene $
|
||||
|
||||
PORTNAME= mongodb
|
||||
DISTVERSIONPREFIX= r
|
||||
DISTVERSION= 4.2.9
|
||||
CATEGORIES= databases net
|
||||
MASTER_SITES+= https://fastdl.mongodb.org/src/
|
||||
MASTER_SITES+= http://fastdl.mongodb.org/src/
|
||||
MASTER_SITES+= http://download.mongodb.org/src/
|
||||
#PKGNAMESUFFIX= ${PORTVERSION:R:S/.//}
|
||||
DISTNAME= mongodb-src-${DISTVERSIONPREFIX}${DISTVERSION}
|
||||
|
||||
MAINTAINER= dev@dudu.ro
|
||||
COMMENT= Distributed document-oriented "NoSQL" database
|
||||
|
||||
LIB_DEPENDS+= libboost_system.so:devel/libboost64
|
||||
LIB_DEPENDS+= libpcre.so:text/libpcre
|
||||
LIB_DEPENDS+= libsnappy.so:arch/libsnappy
|
||||
|
||||
BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}yaml>=3.11:python/py-yaml@${PY_FLAVOR}
|
||||
BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}psutil>0:python/py-psutil@${PY_FLAVOR}
|
||||
BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}cheetah3>0:python/py-cheetah3@${PY_FLAVOR}
|
||||
BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}typing>=3.6.2:python/py-typing@${PY_FLAVOR}
|
||||
|
||||
USES= gmake compiler:c++14-lang python:3.8,build scons shebangfix
|
||||
USE_RC_SUBR= mongod
|
||||
|
||||
SHEBANG_FILES= src/mongo/installer/compass/install_compass.in
|
||||
python_OLD_CMD= @python_interpreter@
|
||||
MAKE_ARGS= --prefix=${STAGEDIR}${PREFIX}
|
||||
MAKE_ARGS+= --use-system-pcre
|
||||
MAKE_ARGS+= --use-system-snappy
|
||||
#MAKE_ARGS+= --use-system-boost
|
||||
MAKE_ARGS+= --use-system-zlib
|
||||
MAKE_ARGS+= --cxx-std=17
|
||||
MAKE_ARGS+= --libc++
|
||||
MAKE_ARGS+= --runtime-hardening=on
|
||||
MAKE_ARGS+= --disable-warnings-as-errors
|
||||
MAKE_ARGS+= VERBOSE=on
|
||||
MAKE_ARGS+= AR=${PREFIX}/bin/gar
|
||||
|
||||
|
||||
MONGO_OWNER= mongodb
|
||||
MONGO_OWNER_ID= 922
|
||||
MONGO_GROUP= mongodb
|
||||
MONGO_GROUP_ID= 922
|
||||
|
||||
SUB_LIST+= MONGO_OWNER=${MONGO_OWNER}
|
||||
SUB_LIST+= MONGO_GROUP=${MONGO_GROUP}
|
||||
SUB_LIST+= MONGO_OWNER_ID=${MONGO_OWNER_ID}
|
||||
SUB_LIST+= MONGO_GROUP_ID=${MONGO_GROUP_ID}
|
||||
|
||||
PKGDEINSTALL= ${WRKDIR}/pkg-deinstall
|
||||
PKGINSTALL= ${WRKDIR}/pkg-install
|
||||
|
||||
SUB_FILES= pkg-install pkg-deinstall
|
||||
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
|
||||
#.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200057
|
||||
#SUB_LIST+= LEGACY_LIMITS="@comment " MODERN_LIMITS=""
|
||||
#.else
|
||||
#SUB_LIST+= LEGACY_LIMITS="" MODERN_LIMITS="@comment "
|
||||
#.endif
|
||||
|
||||
ALL_TARGET= core
|
||||
PORTSCOUT= limitw:1,even
|
||||
|
||||
post-install:
|
||||
.for F in mongo mongod mongos
|
||||
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${F}
|
||||
.endfor
|
||||
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
||||
${CP} ${WRKSRC}/rpm/mongod.conf ${STAGEDIR}${EXAMPLESDIR}/mongodb.conf.sample
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
data/mongodb42/distinfo
Normal file
3
data/mongodb42/distinfo
Normal file
@@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1601294757
|
||||
SHA256 (mongodb-src-r4.2.9.tar.gz) = 4a8633ec92383864bb4b791f9776ef6f4652bf36b2c5a73557d1217ba85bca2b
|
||||
SIZE (mongodb-src-r4.2.9.tar.gz) = 61759327
|
||||
@@ -0,0 +1,24 @@
|
||||
--- src/third_party/mozjs-60/gen-config.sh.orig 2019-10-11 03:28:57 UTC
|
||||
+++ src/third_party/mozjs-60/gen-config.sh
|
||||
@@ -28,6 +28,9 @@ _xcode_setup() {
|
||||
}
|
||||
|
||||
case "$_Path" in
|
||||
+ "platform/aarch64/freebsd")
|
||||
+ _CONFIG_OPTS="--host=aarch64-freebsd"
|
||||
+ ;;
|
||||
"platform/aarch64/linux")
|
||||
_CONFIG_OPTS="--host=aarch64-linux"
|
||||
;;
|
||||
@@ -82,9 +85,9 @@ esac
|
||||
cd mozilla-release/js/src
|
||||
rm config.cache || true
|
||||
|
||||
-PYTHON=python ./configure --without-intl-api --enable-posix-nspr-emulation --disable-trace-logging --disable-js-shell --disable-tests "$_CONFIG_OPTS"
|
||||
+PYTHON=python2.7 ./configure --without-intl-api --enable-posix-nspr-emulation --disable-trace-logging --disable-js-shell --disable-tests "$_CONFIG_OPTS"
|
||||
|
||||
-make recurse_export
|
||||
+gmake recurse_export
|
||||
|
||||
cd ../../..
|
||||
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src0.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src0.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "builtin/AtomicsObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/AtomicsObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/AtomicsObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/DataViewObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/DataViewObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/DataViewObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/Eval.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/Eval.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/Eval.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/JSON.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/JSON.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/JSON.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/MapObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/MapObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/MapObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/ModuleObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/ModuleObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/ModuleObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src1.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src1.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "builtin/Object.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/Object.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/Object.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/Profilers.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/Profilers.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/Profilers.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/Promise.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/Promise.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/Promise.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/Reflect.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/Reflect.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/Reflect.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/ReflectParse.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/ReflectParse.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/ReflectParse.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/SIMD.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/SIMD.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/SIMD.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src10.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src10.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "irregexp/RegExpParser.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "irregexp/RegExpParser.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "irregexp/RegExpParser.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "irregexp/RegExpStack.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "irregexp/RegExpStack.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "irregexp/RegExpStack.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/AliasAnalysis.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/AliasAnalysis.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/AliasAnalysis.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/AliasAnalysisShared.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/AliasAnalysisShared.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/AliasAnalysisShared.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/AlignmentMaskAnalysis.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/AlignmentMaskAnalysis.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/AlignmentMaskAnalysis.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/BacktrackingAllocator.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/BacktrackingAllocator.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/BacktrackingAllocator.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src11.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src11.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "jit/Bailouts.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/Bailouts.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/Bailouts.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/BaselineBailouts.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/BaselineBailouts.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/BaselineBailouts.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/BaselineCacheIRCompiler.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/BaselineCacheIRCompiler.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/BaselineCacheIRCompiler.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/BaselineCompiler.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/BaselineCompiler.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/BaselineCompiler.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/BaselineDebugModeOSR.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/BaselineDebugModeOSR.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/BaselineDebugModeOSR.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/BaselineFrame.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/BaselineFrame.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/BaselineFrame.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src12.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src12.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "jit/BaselineFrameInfo.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/BaselineFrameInfo.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/BaselineFrameInfo.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/BaselineIC.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/BaselineIC.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/BaselineIC.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/BaselineInspector.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/BaselineInspector.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/BaselineInspector.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/BaselineJIT.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/BaselineJIT.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/BaselineJIT.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/BitSet.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/BitSet.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/BitSet.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/BytecodeAnalysis.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/BytecodeAnalysis.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/BytecodeAnalysis.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src13.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src13.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "jit/C1Spewer.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/C1Spewer.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/C1Spewer.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/CacheIR.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/CacheIR.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/CacheIR.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/CacheIRCompiler.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/CacheIRCompiler.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/CacheIRCompiler.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/CacheIRSpewer.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/CacheIRSpewer.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/CacheIRSpewer.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/CodeGenerator.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/CodeGenerator.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/CodeGenerator.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/CompileWrappers.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/CompileWrappers.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/CompileWrappers.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src14.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src14.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "jit/Disassembler.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/Disassembler.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/Disassembler.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/EagerSimdUnbox.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/EagerSimdUnbox.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/EagerSimdUnbox.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/EdgeCaseAnalysis.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/EdgeCaseAnalysis.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/EdgeCaseAnalysis.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/EffectiveAddressAnalysis.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/EffectiveAddressAnalysis.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/EffectiveAddressAnalysis.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/ExecutableAllocator.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/ExecutableAllocator.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/ExecutableAllocator.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/FlowAliasAnalysis.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/FlowAliasAnalysis.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/FlowAliasAnalysis.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src15.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src15.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "jit/FoldLinearArithConstants.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/FoldLinearArithConstants.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/FoldLinearArithConstants.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/InstructionReordering.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/InstructionReordering.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/InstructionReordering.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/Ion.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/Ion.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/Ion.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/IonAnalysis.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/IonAnalysis.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/IonAnalysis.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/IonBuilder.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/IonBuilder.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/IonBuilder.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/IonCacheIRCompiler.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/IonCacheIRCompiler.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/IonCacheIRCompiler.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src16.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src16.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "jit/IonControlFlow.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/IonControlFlow.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/IonControlFlow.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/IonIC.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/IonIC.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/IonIC.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/IonOptimizationLevels.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/IonOptimizationLevels.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/IonOptimizationLevels.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/JSJitFrameIter.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/JSJitFrameIter.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/JSJitFrameIter.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/JSONSpewer.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/JSONSpewer.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/JSONSpewer.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/Jit.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/Jit.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/Jit.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src17.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src17.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "jit/JitFrames.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/JitFrames.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/JitFrames.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/JitOptions.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/JitOptions.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/JitOptions.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/JitSpewer.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/JitSpewer.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/JitSpewer.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/JitcodeMap.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/JitcodeMap.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/JitcodeMap.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/LICM.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/LICM.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/LICM.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/LIR.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/LIR.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/LIR.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src18.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src18.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "jit/Linker.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/Linker.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/Linker.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/LoopUnroller.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/LoopUnroller.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/LoopUnroller.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/Lowering.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/Lowering.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/Lowering.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/MCallOptimize.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/MCallOptimize.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/MCallOptimize.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/MIR.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/MIR.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/MIR.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/MIRGraph.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/MIRGraph.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/MIRGraph.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src19.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src19.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "jit/MacroAssembler.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/MacroAssembler.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/MacroAssembler.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/MoveResolver.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/MoveResolver.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/MoveResolver.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/OptimizationTracking.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/OptimizationTracking.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/OptimizationTracking.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/PerfSpewer.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/PerfSpewer.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/PerfSpewer.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/ProcessExecutableMemory.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/ProcessExecutableMemory.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/ProcessExecutableMemory.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/RangeAnalysis.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/RangeAnalysis.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/RangeAnalysis.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src2.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src2.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "builtin/Stream.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/Stream.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/Stream.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/String.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/String.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/String.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/Symbol.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/Symbol.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/Symbol.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/TestingFunctions.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/TestingFunctions.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/TestingFunctions.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/TypedObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/TypedObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/TypedObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/WeakMapObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/WeakMapObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/WeakMapObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src20.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src20.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "jit/Recover.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/Recover.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/Recover.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/RegisterAllocator.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/RegisterAllocator.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/RegisterAllocator.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/RematerializedFrame.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/RematerializedFrame.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/RematerializedFrame.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/Safepoints.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/Safepoints.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/Safepoints.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/ScalarReplacement.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/ScalarReplacement.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/ScalarReplacement.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/SharedIC.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/SharedIC.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/SharedIC.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src21.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src21.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "jit/Sink.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/Sink.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/Sink.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/Snapshots.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/Snapshots.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/Snapshots.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/StupidAllocator.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/StupidAllocator.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/StupidAllocator.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/TypePolicy.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/TypePolicy.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/TypePolicy.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/TypedObjectPrediction.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/TypedObjectPrediction.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/TypedObjectPrediction.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/VMFunctions.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/VMFunctions.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/VMFunctions.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src22.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src22.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "jit/ValueNumbering.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/ValueNumbering.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/ValueNumbering.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/WasmBCE.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/WasmBCE.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/WasmBCE.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/Architecture-arm64.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/Architecture-arm64.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/Architecture-arm64.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/Assembler-arm64.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/Assembler-arm64.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/Assembler-arm64.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/Bailouts-arm64.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/Bailouts-arm64.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/Bailouts-arm64.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/BaselineIC-arm64.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/BaselineIC-arm64.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/BaselineIC-arm64.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src23.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src23.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "jit/arm64/CodeGenerator-arm64.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/CodeGenerator-arm64.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/CodeGenerator-arm64.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/Disassembler-arm64.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/Disassembler-arm64.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/Disassembler-arm64.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/Lowering-arm64.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/Lowering-arm64.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/Lowering-arm64.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/MacroAssembler-arm64.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/MacroAssembler-arm64.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/MacroAssembler-arm64.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/MoveEmitter-arm64.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/MoveEmitter-arm64.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/MoveEmitter-arm64.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/SharedIC-arm64.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/SharedIC-arm64.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/SharedIC-arm64.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src24.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src24.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "jit/arm64/Trampoline-arm64.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/Trampoline-arm64.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/Trampoline-arm64.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/vixl/Assembler-vixl.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/vixl/Assembler-vixl.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/vixl/Assembler-vixl.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/vixl/Cpu-vixl.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/vixl/Cpu-vixl.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/vixl/Cpu-vixl.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/vixl/Decoder-vixl.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/vixl/Decoder-vixl.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/vixl/Decoder-vixl.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/vixl/Disasm-vixl.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/vixl/Disasm-vixl.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/vixl/Disasm-vixl.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/vixl/Instructions-vixl.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/vixl/Instructions-vixl.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/vixl/Instructions-vixl.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src25.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src25.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "jit/arm64/vixl/Instrument-vixl.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/vixl/Instrument-vixl.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/vixl/Instrument-vixl.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/vixl/MacroAssembler-vixl.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/vixl/MacroAssembler-vixl.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/vixl/MacroAssembler-vixl.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/vixl/MozAssembler-vixl.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/vixl/MozAssembler-vixl.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/vixl/MozAssembler-vixl.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/vixl/MozInstructions-vixl.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/vixl/MozInstructions-vixl.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/vixl/MozInstructions-vixl.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/arm64/vixl/Utils-vixl.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/arm64/vixl/Utils-vixl.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/arm64/vixl/Utils-vixl.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/shared/Assembler-shared.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/shared/Assembler-shared.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/shared/Assembler-shared.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src26.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src26.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "jit/shared/BaselineCompiler-shared.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/shared/BaselineCompiler-shared.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/shared/BaselineCompiler-shared.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/shared/CodeGenerator-shared.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/shared/CodeGenerator-shared.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/shared/CodeGenerator-shared.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/shared/Disassembler-shared.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/shared/Disassembler-shared.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/shared/Disassembler-shared.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jit/shared/Lowering-shared.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jit/shared/Lowering-shared.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jit/shared/Lowering-shared.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jsapi.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jsapi.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jsapi.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jsbool.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jsbool.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jsbool.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src27.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src27.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "jsdate.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jsdate.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jsdate.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jsexn.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jsexn.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jsexn.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jsfriendapi.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jsfriendapi.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jsfriendapi.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "jsnum.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "jsnum.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "jsnum.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "perf/jsperf.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "perf/jsperf.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "perf/jsperf.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "proxy/BaseProxyHandler.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "proxy/BaseProxyHandler.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "proxy/BaseProxyHandler.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src28.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src28.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "proxy/CrossCompartmentWrapper.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "proxy/CrossCompartmentWrapper.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "proxy/CrossCompartmentWrapper.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "proxy/DeadObjectProxy.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "proxy/DeadObjectProxy.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "proxy/DeadObjectProxy.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "proxy/OpaqueCrossCompartmentWrapper.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "proxy/OpaqueCrossCompartmentWrapper.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "proxy/OpaqueCrossCompartmentWrapper.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "proxy/Proxy.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "proxy/Proxy.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "proxy/Proxy.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "proxy/ScriptedProxyHandler.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "proxy/ScriptedProxyHandler.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "proxy/ScriptedProxyHandler.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "proxy/SecurityWrapper.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "proxy/SecurityWrapper.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "proxy/SecurityWrapper.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src29.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src29.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "proxy/Wrapper.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "proxy/Wrapper.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "proxy/Wrapper.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "threading/Mutex.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "threading/Mutex.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "threading/Mutex.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "threading/ProtectedData.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "threading/ProtectedData.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "threading/ProtectedData.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "threading/posix/CpuCount.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "threading/posix/CpuCount.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "threading/posix/CpuCount.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "threading/posix/Thread.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "threading/posix/Thread.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "threading/posix/Thread.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "util/AllocPolicy.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "util/AllocPolicy.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "util/AllocPolicy.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src3.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src3.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "builtin/WeakSetObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/WeakSetObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/WeakSetObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/intl/Collator.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/intl/Collator.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/intl/Collator.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/intl/CommonFunctions.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/intl/CommonFunctions.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/intl/CommonFunctions.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/intl/DateTimeFormat.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/intl/DateTimeFormat.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/intl/DateTimeFormat.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/intl/IntlObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/intl/IntlObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/intl/IntlObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/intl/NumberFormat.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/intl/NumberFormat.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/intl/NumberFormat.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src30.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src30.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "util/NativeStack.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "util/NativeStack.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "util/NativeStack.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "util/Printf.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "util/Printf.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "util/Printf.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "util/StringBuffer.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "util/StringBuffer.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "util/StringBuffer.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "util/Text.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "util/Text.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "util/Text.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "util/Unicode.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "util/Unicode.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "util/Unicode.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/ArgumentsObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/ArgumentsObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/ArgumentsObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src31.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src31.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "vm/ArrayBufferObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/ArrayBufferObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/ArrayBufferObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/AsyncFunction.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/AsyncFunction.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/AsyncFunction.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/AsyncIteration.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/AsyncIteration.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/AsyncIteration.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/BytecodeUtil.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/BytecodeUtil.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/BytecodeUtil.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/Caches.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/Caches.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/Caches.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/CallNonGenericMethod.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/CallNonGenericMethod.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/CallNonGenericMethod.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src32.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src32.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "vm/CharacterEncoding.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/CharacterEncoding.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/CharacterEncoding.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/CodeCoverage.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/CodeCoverage.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/CodeCoverage.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/Compression.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/Compression.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/Compression.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/DateTime.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/DateTime.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/DateTime.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/Debugger.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/Debugger.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/Debugger.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/DebuggerMemory.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/DebuggerMemory.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/DebuggerMemory.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src33.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src33.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "vm/EnvironmentObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/EnvironmentObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/EnvironmentObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/ErrorObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/ErrorObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/ErrorObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/ErrorReporting.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/ErrorReporting.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/ErrorReporting.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/ForOfIterator.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/ForOfIterator.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/ForOfIterator.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/GeckoProfiler.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/GeckoProfiler.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/GeckoProfiler.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/GeneratorObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/GeneratorObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/GeneratorObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src34.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src34.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "vm/GlobalObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/GlobalObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/GlobalObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/HelperThreads.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/HelperThreads.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/HelperThreads.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/Id.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/Id.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/Id.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/Initialization.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/Initialization.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/Initialization.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/Iteration.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/Iteration.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/Iteration.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/JSCompartment.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/JSCompartment.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/JSCompartment.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src35.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src35.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "vm/JSContext.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/JSContext.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/JSContext.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/JSFunction.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/JSFunction.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/JSFunction.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/JSONParser.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/JSONParser.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/JSONParser.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/JSONPrinter.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/JSONPrinter.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/JSONPrinter.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/JSObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/JSObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/JSObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/JSScript.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/JSScript.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/JSScript.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src36.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src36.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "vm/MemoryMetrics.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/MemoryMetrics.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/MemoryMetrics.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/NativeObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/NativeObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/NativeObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/ObjectGroup.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/ObjectGroup.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/ObjectGroup.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/PIC.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/PIC.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/PIC.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/PosixNSPR.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/PosixNSPR.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/PosixNSPR.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/Printer.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/Printer.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/Printer.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src37.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src37.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "vm/Probes.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/Probes.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/Probes.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/ProxyObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/ProxyObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/ProxyObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/Realm.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/Realm.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/Realm.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/ReceiverGuard.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/ReceiverGuard.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/ReceiverGuard.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/RegExpObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/RegExpObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/RegExpObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/RegExpStatics.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/RegExpStatics.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/RegExpStatics.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src38.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src38.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "vm/Runtime.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/Runtime.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/Runtime.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/SavedStacks.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/SavedStacks.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/SavedStacks.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/Scope.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/Scope.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/Scope.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/SelfHosting.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/SelfHosting.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/SelfHosting.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/Shape.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/Shape.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/Shape.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/SharedArrayObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/SharedArrayObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/SharedArrayObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src39.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src39.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "vm/SharedImmutableStringsCache.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/SharedImmutableStringsCache.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/SharedImmutableStringsCache.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/Stack.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/Stack.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/Stack.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/Stopwatch.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/Stopwatch.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/Stopwatch.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/StringType.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/StringType.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/StringType.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/StructuredClone.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/StructuredClone.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/StructuredClone.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/SymbolType.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/SymbolType.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/SymbolType.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src4.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src4.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "builtin/intl/PluralRules.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/intl/PluralRules.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/intl/PluralRules.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/intl/RelativeTimeFormat.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/intl/RelativeTimeFormat.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/intl/RelativeTimeFormat.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "builtin/intl/SharedIntlData.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "builtin/intl/SharedIntlData.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "builtin/intl/SharedIntlData.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "devtools/sharkctl.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "devtools/sharkctl.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "devtools/sharkctl.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "ds/Bitmap.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "ds/Bitmap.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "ds/Bitmap.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "ds/LifoAlloc.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "ds/LifoAlloc.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "ds/LifoAlloc.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src40.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src40.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "vm/TaggedProto.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/TaggedProto.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/TaggedProto.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/Time.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/Time.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/Time.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/TypeInference.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/TypeInference.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/TypeInference.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/TypedArrayObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/TypedArrayObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/TypedArrayObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/UbiNode.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/UbiNode.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/UbiNode.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/UbiNodeCensus.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/UbiNodeCensus.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/UbiNodeCensus.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src41.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src41.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "vm/UbiNodeShortestPaths.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/UbiNodeShortestPaths.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/UbiNodeShortestPaths.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/UnboxedObject.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/UnboxedObject.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/UnboxedObject.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/Value.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/Value.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/Value.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "vm/Xdr.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "vm/Xdr.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "vm/Xdr.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/AsmJS.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/AsmJS.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/AsmJS.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmBaselineCompile.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmBaselineCompile.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmBaselineCompile.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src42.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src42.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "wasm/WasmBinaryIterator.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmBinaryIterator.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmBinaryIterator.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmBinaryToAST.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmBinaryToAST.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmBinaryToAST.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmBinaryToText.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmBinaryToText.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmBinaryToText.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmBuiltins.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmBuiltins.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmBuiltins.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmCode.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmCode.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmCode.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmCompartment.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmCompartment.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmCompartment.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src43.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src43.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "wasm/WasmCompile.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmCompile.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmCompile.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmDebug.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmDebug.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmDebug.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmFrameIter.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmFrameIter.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmFrameIter.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmGenerator.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmGenerator.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmGenerator.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmInstance.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmInstance.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmInstance.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmIonCompile.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmIonCompile.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmIonCompile.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src44.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src44.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "wasm/WasmJS.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmJS.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmJS.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmModule.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmModule.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmModule.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmProcess.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmProcess.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmProcess.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmSignalHandlers.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmSignalHandlers.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmSignalHandlers.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmStubs.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmStubs.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmStubs.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmTable.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmTable.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmTable.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,41 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src45.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src45.cpp
|
||||
@@ -0,0 +1,37 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "wasm/WasmTextToBinary.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmTextToBinary.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmTextToBinary.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmTextUtils.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmTextUtils.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmTextUtils.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmTypes.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmTypes.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmTypes.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "wasm/WasmValidate.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "wasm/WasmValidate.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "wasm/WasmValidate.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src5.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src5.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "ds/MemoryProtectionExceptionHandler.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "ds/MemoryProtectionExceptionHandler.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "ds/MemoryProtectionExceptionHandler.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "frontend/BytecodeCompiler.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "frontend/BytecodeCompiler.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "frontend/BytecodeCompiler.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "frontend/BytecodeEmitter.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "frontend/BytecodeEmitter.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "frontend/BytecodeEmitter.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "frontend/FoldConstants.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "frontend/FoldConstants.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "frontend/FoldConstants.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "frontend/NameFunctions.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "frontend/NameFunctions.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "frontend/NameFunctions.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "frontend/ParseNode.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "frontend/ParseNode.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "frontend/ParseNode.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src6.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src6.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "frontend/TokenStream.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "frontend/TokenStream.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "frontend/TokenStream.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "gc/Allocator.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "gc/Allocator.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "gc/Allocator.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "gc/AtomMarking.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "gc/AtomMarking.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "gc/AtomMarking.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "gc/Barrier.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "gc/Barrier.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "gc/Barrier.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "gc/GC.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "gc/GC.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "gc/GC.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "gc/GCTrace.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "gc/GCTrace.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "gc/GCTrace.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src7.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src7.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "gc/Marking.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "gc/Marking.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "gc/Marking.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "gc/Memory.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "gc/Memory.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "gc/Memory.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "gc/Nursery.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "gc/Nursery.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "gc/Nursery.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "gc/PublicIterators.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "gc/PublicIterators.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "gc/PublicIterators.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "gc/RootMarking.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "gc/RootMarking.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "gc/RootMarking.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "gc/Statistics.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "gc/Statistics.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "gc/Statistics.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src8.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src8.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "gc/Tracer.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "gc/Tracer.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "gc/Tracer.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "gc/Verifier.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "gc/Verifier.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "gc/Verifier.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "gc/WeakMap.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "gc/WeakMap.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "gc/WeakMap.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "gc/WeakMapPtr.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "gc/WeakMapPtr.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "gc/WeakMapPtr.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "gc/Zone.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "gc/Zone.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "gc/Zone.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "gc/ZoneGroup.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "gc/ZoneGroup.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "gc/ZoneGroup.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,59 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src9.cpp.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/Unified_cpp_js_src9.cpp
|
||||
@@ -0,0 +1,55 @@
|
||||
+#define MOZ_UNIFIED_BUILD
|
||||
+#include "irregexp/NativeRegExpMacroAssembler.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "irregexp/NativeRegExpMacroAssembler.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "irregexp/NativeRegExpMacroAssembler.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "irregexp/RegExpAST.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "irregexp/RegExpAST.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "irregexp/RegExpAST.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "irregexp/RegExpCharacters.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "irregexp/RegExpCharacters.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "irregexp/RegExpCharacters.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "irregexp/RegExpEngine.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "irregexp/RegExpEngine.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "irregexp/RegExpEngine.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "irregexp/RegExpInterpreter.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "irregexp/RegExpInterpreter.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "irregexp/RegExpInterpreter.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
+#include "irregexp/RegExpMacroAssembler.cpp"
|
||||
+#ifdef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#error "irregexp/RegExpMacroAssembler.cpp uses PL_ARENA_CONST_ALIGN_MASK, so it cannot be built in unified mode."
|
||||
+#undef PL_ARENA_CONST_ALIGN_MASK
|
||||
+#endif
|
||||
+#ifdef INITGUID
|
||||
+#error "irregexp/RegExpMacroAssembler.cpp defines INITGUID, so it cannot be built in unified mode."
|
||||
+#undef INITGUID
|
||||
+#endif
|
||||
\ No newline at end of file
|
||||
@@ -0,0 +1,79 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/build/js-confdefs.h.orig 2019-11-14 10:50:10 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/build/js-confdefs.h
|
||||
@@ -0,0 +1,76 @@
|
||||
+/* List of defines generated by configure. Included with preprocessor flag,
|
||||
+ * -include, to avoid long list of -D defines on the compile command-line.
|
||||
+ * Do not edit.
|
||||
+ */
|
||||
+
|
||||
+#ifndef js_confdefs_h
|
||||
+#define js_confdefs_h
|
||||
+
|
||||
+// Expands to all the defines from configure.
|
||||
+#define CPP_THROW_NEW throw()
|
||||
+#define CROSS_COMPILE
|
||||
+#define EDITLINE 1
|
||||
+#define HAVE_64BIT_BUILD 1
|
||||
+#define HAVE_CLOCK_MONOTONIC 1
|
||||
+#define HAVE_CPP_DYNAMIC_CAST_TO_VOID_PTR 1
|
||||
+#define HAVE_DIRENT_H 1
|
||||
+#define HAVE_DLOPEN 1
|
||||
+#define HAVE_GETC_UNLOCKED 1
|
||||
+#define HAVE_GETOPT_H 1
|
||||
+#define HAVE_GMTIME_R 1
|
||||
+#define HAVE_INTTYPES_H 1
|
||||
+#define HAVE_LANGINFO_CODESET 1
|
||||
+#define HAVE_LIBM 1
|
||||
+#define HAVE_LOCALECONV 1
|
||||
+#define HAVE_LOCALTIME_R 1
|
||||
+#define HAVE_MALLOC_USABLE_SIZE 1
|
||||
+#define HAVE_NETINET_IN_H 1
|
||||
+#define HAVE_NL_TYPES_H 1
|
||||
+#define HAVE_POSIX_FADVISE 1
|
||||
+#define HAVE_POSIX_FALLOCATE 1
|
||||
+#define HAVE_POSIX_MEMALIGN 1
|
||||
+#define HAVE_RES_NINIT 1
|
||||
+#define HAVE_SINCOS 1
|
||||
+#define HAVE_SSIZE_T 1
|
||||
+#define HAVE_STDINT_H 1
|
||||
+#define HAVE_STRNDUP 1
|
||||
+#define HAVE_SYS_MOUNT_H 1
|
||||
+#define HAVE_SYS_QUEUE_H 1
|
||||
+#define HAVE_SYS_STATVFS_H 1
|
||||
+#define HAVE_SYS_TYPES_H 1
|
||||
+#define HAVE_THREAD_TLS_KEYWORD 1
|
||||
+#define HAVE_TM_ZONE_TM_GMTOFF 1
|
||||
+#define HAVE_UNISTD_H 1
|
||||
+#define HAVE_VALLOC 1
|
||||
+#define HAVE_VA_COPY 1
|
||||
+#define HAVE_VISIBILITY_ATTRIBUTE 1
|
||||
+#define HAVE_VISIBILITY_HIDDEN_ATTRIBUTE 1
|
||||
+#define HAVE___CXA_DEMANGLE 1
|
||||
+#define JS_64BIT 1
|
||||
+#define JS_CODEGEN_ARM64 1
|
||||
+#define JS_DEFAULT_JITREPORT_GRANULARITY 3
|
||||
+#define JS_POSIX_NSPR 1
|
||||
+#define JS_PUNBOX64 1
|
||||
+#define JS_STANDALONE 1
|
||||
+#define MALLOC_H <malloc_np.h>
|
||||
+#define MALLOC_USABLE_SIZE_CONST_PTR const
|
||||
+#define MOZILLA_UAVERSION "60.0"
|
||||
+#define MOZILLA_VERSION "60.3.0"
|
||||
+#define MOZILLA_VERSION_U 60.3.0
|
||||
+#define MOZJS_MAJOR_VERSION 60
|
||||
+#define MOZJS_MINOR_VERSION 3
|
||||
+#define MOZ_BUILD_APP js
|
||||
+#define MOZ_DLL_SUFFIX ".so"
|
||||
+#define MOZ_UPDATE_CHANNEL default
|
||||
+#define NO_NSPR_10_SUPPORT 1
|
||||
+#define RELEASE_OR_BETA 1
|
||||
+#define STDC_HEADERS 1
|
||||
+#define VA_COPY va_copy
|
||||
+#define XP_UNIX 1
|
||||
+#define X_DISPLAY_MISSING 1
|
||||
+#define _REENTRANT 1
|
||||
+#define _THREAD_SAFE 1
|
||||
+
|
||||
+#include "js/RequiredDefines.h"
|
||||
+
|
||||
+#endif /* js_confdefs_h */
|
||||
@@ -0,0 +1,64 @@
|
||||
--- src/third_party/mozjs-60/platform/aarch64/freebsd/include/js-config.h.orig 2019-11-14 10:50:21 UTC
|
||||
+++ src/third_party/mozjs-60/platform/aarch64/freebsd/include/js-config.h
|
||||
@@ -0,0 +1,61 @@
|
||||
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
+ * vim: set ts=8 sw=4 et tw=78:
|
||||
+ *
|
||||
+ * This Source Code Form is subject to the terms of the Mozilla Public
|
||||
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
+
|
||||
+#ifndef js_config_h
|
||||
+#define js_config_h
|
||||
+
|
||||
+/* Definitions set at build time that affect SpiderMonkey's public API.
|
||||
+ This header file is generated by the SpiderMonkey configure script,
|
||||
+ and installed along with jsapi.h. */
|
||||
+
|
||||
+/* Define to 1 if SpiderMonkey is in debug mode. */
|
||||
+/* #undef JS_DEBUG */
|
||||
+
|
||||
+/*
|
||||
+ * NB: We have a special case for rust-bindgen, which wants to be able to
|
||||
+ * generate both debug and release bindings on a single objdir.
|
||||
+ */
|
||||
+#ifdef JS_DEBUG
|
||||
+#if !defined(DEBUG) && !defined(RUST_BINDGEN)
|
||||
+# error "SpiderMonkey was configured with --enable-debug, so DEBUG must be defined when including this header"
|
||||
+# endif
|
||||
+#else
|
||||
+# if defined(DEBUG) && !defined(RUST_BINDGEN)
|
||||
+# error "SpiderMonkey was configured with --disable-debug, so DEBUG must be not defined when including this header"
|
||||
+# endif
|
||||
+#endif
|
||||
+
|
||||
+/* Define to 1 if SpiderMonkey should not use struct types in debug builds. */
|
||||
+/* #undef JS_NO_JSVAL_JSID_STRUCT_TYPES */
|
||||
+
|
||||
+/* Define to 1 if SpiderMonkey should support multi-threaded clients. */
|
||||
+/* #undef JS_THREADSAFE */
|
||||
+
|
||||
+/* Define to 1 if SpiderMonkey should include ctypes support. */
|
||||
+/* #undef JS_HAS_CTYPES */
|
||||
+
|
||||
+/* Define to 1 if SpiderMonkey should support the ability to perform
|
||||
+ entirely too much GC. */
|
||||
+/* #undef JS_GC_ZEAL */
|
||||
+
|
||||
+/* Define to 1 if SpiderMonkey should use small chunks. */
|
||||
+/* #undef JS_GC_SMALL_CHUNK_SIZE */
|
||||
+
|
||||
+/* Define to 1 to perform extra assertions and heap poisoning. */
|
||||
+/* #undef JS_CRASH_DIAGNOSTICS */
|
||||
+
|
||||
+/* Define to 1 if SpiderMonkey is in NUNBOX32 mode. */
|
||||
+/* #undef JS_NUNBOX32 */
|
||||
+
|
||||
+/* Define to 1 if SpiderMonkey is in PUNBOX64 mode. */
|
||||
+#define JS_PUNBOX64 1
|
||||
+
|
||||
+/* MOZILLA JSAPI version number components */
|
||||
+#define MOZJS_MAJOR_VERSION 60
|
||||
+#define MOZJS_MINOR_VERSION 3
|
||||
+
|
||||
+#endif /* js_config_h */
|
||||
53
data/mongodb42/files/mongod.in
Normal file
53
data/mongodb42/files/mongod.in
Normal file
@@ -0,0 +1,53 @@
|
||||
#!/bin/sh
|
||||
|
||||
# PROVIDE: mongod
|
||||
# REQUIRE: NETWORK ldconfig
|
||||
# KEYWORD: shutdown
|
||||
#
|
||||
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
|
||||
# to enable this service:
|
||||
#
|
||||
# mongod_enable (bool): Set to "NO" by default.
|
||||
# Set it to "YES" to enable mongod.
|
||||
# mongod_dbpath (str): Default to "/var/db/mongodb"
|
||||
# Base database directory.
|
||||
# mongod_flags (str): Custom additional arguments to be passed to mongod.
|
||||
# Default to "--logpath ${mongod_dbpath}/mongod.log --logappend".
|
||||
# mongod_config (str): Default to "%%PREFIX%%/etc/mongodb.conf"
|
||||
# Path to config file
|
||||
#
|
||||
|
||||
. /etc/rc.subr
|
||||
|
||||
name="mongod"
|
||||
rcvar=mongod_enable
|
||||
|
||||
load_rc_config $name
|
||||
|
||||
: ${mongod_enable="NO"}
|
||||
: ${mongod_dbpath="/var/db/mongodb"}
|
||||
: ${mongod_flags="--logpath ${mongod_dbpath}/mongod.log --logappend --setParameter=disabledSecureAllocatorDomains=\*"}
|
||||
: ${mongod_user="mongodb"}
|
||||
: ${mongod_group="mongodb"}
|
||||
: ${mongod_config="%%PREFIX%%/etc/mongodb.conf"}
|
||||
|
||||
pidfile="${mongod_dbpath}/mongod.lock"
|
||||
command=%%PREFIX%%/bin/${name}
|
||||
command_args="--config $mongod_config --dbpath $mongod_dbpath --fork >/dev/null 2>/dev/null"
|
||||
start_precmd="${name}_prestart"
|
||||
|
||||
mongod_create_dbpath()
|
||||
{
|
||||
mkdir ${mongod_dbpath} >/dev/null 2>/dev/null
|
||||
[ $? -eq 0 ] && chown -R ${mongod_user}:${mongod_group} ${mongod_dbpath}
|
||||
}
|
||||
|
||||
mongod_prestart()
|
||||
{
|
||||
if [ ! -d ${mongod_dbpath} ]; then
|
||||
mongod_create_dbpath || return 1
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
run_rc_command "$1"
|
||||
33
data/mongodb42/files/patch-SConstruct
Normal file
33
data/mongodb42/files/patch-SConstruct
Normal file
@@ -0,0 +1,33 @@
|
||||
--- SConstruct.orig 2019-08-08 20:06:23 UTC
|
||||
+++ SConstruct
|
||||
@@ -1068,9 +1068,9 @@ if has_option('variables-help'):
|
||||
print((env_vars.GenerateHelpText(env)))
|
||||
Exit(0)
|
||||
|
||||
-unknown_vars = env_vars.UnknownVariables()
|
||||
-if unknown_vars:
|
||||
- env.FatalError("Unknown variables specified: {0}", ", ".join(list(unknown_vars.keys())))
|
||||
+#unknown_vars = env_vars.UnknownVariables()
|
||||
+#if unknown_vars:
|
||||
+# env.FatalError("Unknown variables specified: {0}", ", ".join(list(unknown_vars.keys())))
|
||||
|
||||
def set_config_header_define(env, varname, varval = 1):
|
||||
env['CONFIG_HEADER_DEFINES'][varname] = varval
|
||||
@@ -1851,7 +1851,7 @@ if env.TargetOSIs('posix'):
|
||||
# If runtime hardening is requested, then build anything
|
||||
# destined for an executable with the necessary flags for PIE.
|
||||
env.AppendUnique(
|
||||
- PROGCCFLAGS=['-fPIE'],
|
||||
+ PROGCCFLAGS=['-fpic'],
|
||||
PROGLINKFLAGS=['-pie'],
|
||||
)
|
||||
|
||||
@@ -1865,7 +1865,7 @@ if env.TargetOSIs('posix'):
|
||||
"-Wno-unknown-pragmas",
|
||||
"-Winvalid-pch"] )
|
||||
# env.Append( " -Wconversion" ) TODO: this doesn't really work yet
|
||||
- if env.TargetOSIs('linux', 'darwin', 'solaris'):
|
||||
+ if env.TargetOSIs('linux', 'darwin', 'solaris', 'freebsd'):
|
||||
if not has_option("disable-warnings-as-errors"):
|
||||
env.Append( CCFLAGS=["-Werror"] )
|
||||
|
||||
25
data/mongodb42/files/patch-rpm_mongod.conf
Normal file
25
data/mongodb42/files/patch-rpm_mongod.conf
Normal file
@@ -0,0 +1,25 @@
|
||||
--- rpm/mongod.conf.orig 2019-08-08 20:06:23 UTC
|
||||
+++ rpm/mongod.conf
|
||||
@@ -7,11 +7,11 @@
|
||||
systemLog:
|
||||
destination: file
|
||||
logAppend: true
|
||||
- path: /var/log/mongodb/mongod.log
|
||||
+ path: /var/db/mongodb/mongod.log
|
||||
|
||||
# Where and how to store data.
|
||||
storage:
|
||||
- dbPath: /var/lib/mongo
|
||||
+ dbPath: /var/db/mongodb
|
||||
journal:
|
||||
enabled: true
|
||||
# engine:
|
||||
@@ -20,7 +20,7 @@ storage:
|
||||
# how the process runs
|
||||
processManagement:
|
||||
fork: true # fork and run in background
|
||||
- pidFilePath: /var/run/mongodb/mongod.pid # location of pidfile
|
||||
+ pidFilePath: /var/db/mongodb/mongod.lock # location of pidfile
|
||||
timeZoneInfo: /usr/share/zoneinfo
|
||||
|
||||
# network interfaces
|
||||
15
data/mongodb42/files/pkg-deinstall.in
Normal file
15
data/mongodb42/files/pkg-deinstall.in
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/bin/sh -x
|
||||
|
||||
MONGO_OWNER="%%MONGO_OWNER%%"
|
||||
MONGO_GROUP="%%MONGO_GROUP%%"
|
||||
MONGO_DB_DIR="%%MONGO_DB_DIR%%"
|
||||
|
||||
|
||||
case $2 in
|
||||
DEINSTALL)
|
||||
;;
|
||||
POST-DEINSTALL)
|
||||
rmdir ${MONGO_DB_DIR} || (ls -l ${MONGO_DB_DIR} ; du -sch ${MONGO_DB_DIR})
|
||||
;;
|
||||
esac
|
||||
#EOF
|
||||
30
data/mongodb42/files/pkg-install.in
Normal file
30
data/mongodb42/files/pkg-install.in
Normal file
@@ -0,0 +1,30 @@
|
||||
#!/bin/sh -x
|
||||
|
||||
MONGO_OWNER="%%MONGO_OWNER%%"
|
||||
MONGO_GROUP="%%MONGO_GROUP%%"
|
||||
MONGO_OWNER_ID="%%MONGO_OWNER_ID%%"
|
||||
MONGO_GROUP_ID="%%MONGO_GROUP_ID%%"
|
||||
|
||||
#MONGO_DB_DIR="%%MONGO_DB_DIR%%"
|
||||
|
||||
PKG__PPREFIX="/notexist"
|
||||
|
||||
case $2 in
|
||||
PRE-INSTALL)
|
||||
pw group add ${MONGO_GROUP} -g ${MONGO_GROUP_ID}
|
||||
pw user add ${MONGO_OWNER} -u ${MONGO_OWNER_ID} -g ${MONGO_GROUP} \
|
||||
-d ${PKG_PREFIX} -m -s "/bin/sh" \
|
||||
-c "mongodb"
|
||||
pw group mod ${MONGO_GROUP} -M ${MONGO_OWNER}
|
||||
|
||||
pw user show ${MONGO_OWNER}
|
||||
pw group show ${MONGO_GROUP}
|
||||
|
||||
# mkdir -p ${MONGO_DB_DIR}
|
||||
# chown ${MONGO_OWNER}:${MONGO_GROUP} ${MONGO_DB_DIR}
|
||||
# chmod 0700 ${MONGO_DB_DIR}
|
||||
;;
|
||||
POST-INSTALL)
|
||||
;;
|
||||
esac
|
||||
#EOF
|
||||
5
data/mongodb42/pkg-descr
Normal file
5
data/mongodb42/pkg-descr
Normal file
@@ -0,0 +1,5 @@
|
||||
Mongo (from "humongous") is a high-performance, open source,
|
||||
schema-free, document-oriented database. A common name in the
|
||||
"NOSQL" community.
|
||||
|
||||
WWW: https://www.mongodb.com/
|
||||
6
data/mongodb42/pkg-plist
Normal file
6
data/mongodb42/pkg-plist
Normal file
@@ -0,0 +1,6 @@
|
||||
bin/install_compass
|
||||
bin/mongo
|
||||
bin/mongod
|
||||
bin/mongos
|
||||
share/examples/mongodb/mongodb.conf.sample
|
||||
@dir share/examples/mongodb
|
||||
22
devel/go-bindata/Makefile
Normal file
22
devel/go-bindata/Makefile
Normal file
@@ -0,0 +1,22 @@
|
||||
# $FreeBSD: head/devel/go-bindata/Makefile 529269 2020-03-27 17:17:50Z swills $
|
||||
|
||||
PORTNAME= go-bindata
|
||||
PORTVERSION= 3.1.3
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= swills@FreeBSD.org
|
||||
COMMENT= Generates Go code from any file
|
||||
|
||||
USES= go:modules
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_TUPLE= golang:lint:fdd1cda4f05f:golang_lint/vendor/golang.org/x/lint \
|
||||
golang:tools:a911d9008d1f:golang_tools/vendor/golang.org/x/tools \
|
||||
kisielk:errcheck:v1.2.0:kisielk_errcheck/vendor/github.com/kisielk/errcheck
|
||||
|
||||
GO_TARGET= ./go-bindata
|
||||
|
||||
PLIST_FILES= bin/go-bindata
|
||||
|
||||
.include <bsd.port.mk>
|
||||
9
devel/go-bindata/distinfo
Normal file
9
devel/go-bindata/distinfo
Normal file
@@ -0,0 +1,9 @@
|
||||
TIMESTAMP = 1584257647
|
||||
SHA256 (go-bindata-go-bindata-v3.1.3_GH0.tar.gz) = c9115e60995ecba15568c9f8052e77764f2b87b7b362cafd900cfc9829cba7e8
|
||||
SIZE (go-bindata-go-bindata-v3.1.3_GH0.tar.gz) = 21280
|
||||
SHA256 (golang-lint-fdd1cda4f05f_GH0.tar.gz) = d02215cdf7a8c9e1874406b0414f3799e13e235ed4de142f837f68aa69d6fd55
|
||||
SIZE (golang-lint-fdd1cda4f05f_GH0.tar.gz) = 31573
|
||||
SHA256 (golang-tools-a911d9008d1f_GH0.tar.gz) = 6609588954a2fe2db90df20ecf296b84f39de41f3f9abc5804105d213eb2cfe4
|
||||
SIZE (golang-tools-a911d9008d1f_GH0.tar.gz) = 2297513
|
||||
SHA256 (kisielk-errcheck-v1.2.0_GH0.tar.gz) = 23499a71861ce97957a0f23ddd2f03e793327faf61a5a46dc22706650e781e38
|
||||
SIZE (kisielk-errcheck-v1.2.0_GH0.tar.gz) = 15896
|
||||
4
devel/go-bindata/pkg-descr
Normal file
4
devel/go-bindata/pkg-descr
Normal file
@@ -0,0 +1,4 @@
|
||||
A small utility which generates Go code from any file. Useful for embedding
|
||||
binary data in a Go program.
|
||||
|
||||
WWW: https://github.com/go-bindata/go-bindata
|
||||
@@ -2,7 +2,7 @@
|
||||
# $Id$
|
||||
#
|
||||
PORTNAME= libuv
|
||||
PORTVERSION= 1.33.1
|
||||
PORTVERSION= 1.39.0
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= devel
|
||||
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1573757288
|
||||
SHA256 (libuv-libuv-v1.33.1_GH0.tar.gz) = 63794499bf5da1720e249d3fc14ff396b70b8736effe6ce5b4e47e0f3d476467
|
||||
SIZE (libuv-libuv-v1.33.1_GH0.tar.gz) = 1251944
|
||||
TIMESTAMP = 1601388766
|
||||
SHA256 (libuv-libuv-v1.39.0_GH0.tar.gz) = dc7b21f1bb7ef19f4b42c5ea058afabe51132d165da18812b70fb319659ba629
|
||||
SIZE (libuv-libuv-v1.39.0_GH0.tar.gz) = 1272565
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
# $FreeBSD: head/www/npm/Makefile 454516 2017-11-20 04:30:31Z sunpoet $
|
||||
|
||||
PORTNAME= npm
|
||||
PORTVERSION= 6.13.7 #6.12.1
|
||||
PORTVERSION= 6.14.8
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= LOCAL/sunpoet
|
||||
|
||||
@@ -10,9 +10,7 @@ MAINTAINER= sunpoet@FreeBSD.org
|
||||
COMMENT= Node package manager
|
||||
|
||||
RUN_DEPENDS= gmake:devel/gmake
|
||||
RUN_DEPENDS+= node>=8:lang/node13
|
||||
|
||||
CONFLICTS_INSTALL= npm2 npm3 npm4
|
||||
RUN_DEPENDS+= node>=8:lang/node14
|
||||
|
||||
NO_ARCH= yes
|
||||
NO_BUILD= yes
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1573736128
|
||||
SHA256 (npm-6.12.1.tar.xz) = 1e7b08a90383895776afe402c2041f134520308aa885add97baf0cd473975ef8
|
||||
SIZE (npm-6.12.1.tar.xz) = 3415212
|
||||
TIMESTAMP = 1600606967
|
||||
SHA256 (npm-6.14.8.tar.xz) = 1c9beab15ef7c031b4d9d2261cbe7ab8af63bc1fee0a79623c9759072dbeea6b
|
||||
SIZE (npm-6.14.8.tar.xz) = 3369236
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -11,7 +11,7 @@ COMMENT= Build tool alternative to make
|
||||
|
||||
RUN_DEPENDS= gm4:text/gm4
|
||||
|
||||
USES= python:2.7
|
||||
USES= python:3.8
|
||||
USE_PYTHON= distutils ##autoplist
|
||||
|
||||
PLIST_SUB+= SCONS_VER=${PORTVERSION}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
30
devel/scons3/Makefile
Normal file
30
devel/scons3/Makefile
Normal file
@@ -0,0 +1,30 @@
|
||||
# Created by: Peter Haight <peterh@sapros.com>
|
||||
# $FreeBSD: head/devel/scons/Makefile 536494 2020-05-25 18:31:34Z sunpoet $
|
||||
|
||||
PORTNAME= scons
|
||||
PORTVERSION= 3.1.2
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= SF
|
||||
PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX}
|
||||
|
||||
MAINTAINER= sunpoet@FreeBSD.org
|
||||
COMMENT= Build tool alternative to make
|
||||
|
||||
RUN_DEPENDS= gm4:text/gm4
|
||||
|
||||
USES= python:3.5+ shebangfix
|
||||
USE_PYTHON= concurrent distutils
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
SHEBANG_FILES= script/scons*
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|distutils\(\.command\.install\)$$|setuptools\1|; s|distutils\(\.command\.install\.\)|setuptools\1|' ${WRKSRC}/setup.py
|
||||
@${FIND} ${WRKSRC} -name '*.orig' -delete
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
#PYDISTUTILS_INSTALLARGS+= --standard-lib
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
3
devel/scons3/distinfo
Normal file
3
devel/scons3/distinfo
Normal file
@@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1585059178
|
||||
SHA256 (scons-3.1.2.tar.gz) = 7801f3f62f654528e272df780be10c0e9337e897650b62ddcee9f39fde13f8fb
|
||||
SIZE (scons-3.1.2.tar.gz) = 668298
|
||||
11
devel/scons3/files/patch-engine_SCons_Tool_m4.py
Normal file
11
devel/scons3/files/patch-engine_SCons_Tool_m4.py
Normal file
@@ -0,0 +1,11 @@
|
||||
--- engine/SCons/Tool/m4.py.orig 2015-11-09 11:25:09 UTC
|
||||
+++ engine/SCons/Tool/m4.py
|
||||
@@ -49,7 +49,7 @@ def generate(env):
|
||||
# file and run from there.
|
||||
# The src_suffix setup is like so: file.c.m4 -> file.c,
|
||||
# file.cpp.m4 -> file.cpp etc.
|
||||
- env['M4'] = 'm4'
|
||||
+ env['M4'] = 'gm4'
|
||||
env['M4FLAGS'] = SCons.Util.CLVar('-E')
|
||||
env['M4COM'] = 'cd ${SOURCE.rsrcdir} && $M4 $M4FLAGS < ${SOURCE.file} > ${TARGET.abspath}'
|
||||
|
||||
5
devel/scons3/pkg-descr
Normal file
5
devel/scons3/pkg-descr
Normal file
@@ -0,0 +1,5 @@
|
||||
SCons is an Open Source software construction tool--that is, a build tool;
|
||||
an improved substitute for the classic Make utility; a better way to build
|
||||
software.
|
||||
|
||||
WWW: https://scons.org/
|
||||
630
devel/scons3/pkg-plist
Normal file
630
devel/scons3/pkg-plist
Normal file
@@ -0,0 +1,630 @@
|
||||
bin/scons
|
||||
bin/scons-3.1.2
|
||||
bin/scons-3.8
|
||||
bin/scons-configure-cache
|
||||
bin/scons-configure-cache-3.1.2
|
||||
bin/scons-configure-cache-3.8
|
||||
bin/scons-time
|
||||
bin/scons-time-3.1.2
|
||||
bin/scons-time-3.8
|
||||
bin/sconsign
|
||||
bin/sconsign-3.1.2
|
||||
bin/sconsign-3.8
|
||||
lib/scons/scons-3.1.2-py3.8.egg-info/dependency_links.txt
|
||||
lib/scons/scons-3.1.2-py3.8.egg-info/PKG-INFO
|
||||
lib/scons/scons-3.1.2-py3.8.egg-info/SOURCES.txt
|
||||
lib/scons/scons-3.1.2-py3.8.egg-info/top_level.txt
|
||||
lib/scons/SCons/__init__.py
|
||||
lib/scons/SCons/__main__.py
|
||||
lib/scons/SCons/__pycache__/__init__.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/__init__.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/__main__.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/__main__.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/Action.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/Action.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/Builder.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/Builder.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/CacheDir.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/CacheDir.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/Conftest.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/Conftest.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/cpp.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/cpp.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/dblite.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/dblite.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/Debug.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/Debug.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/Defaults.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/Defaults.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/Environment.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/Environment.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/Errors.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/Errors.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/Executor.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/Executor.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/exitfuncs.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/exitfuncs.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/Job.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/Job.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/Memoize.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/Memoize.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/PathList.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/PathList.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/SConf.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/SConf.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/SConsign.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/SConsign.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/Subst.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/Subst.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/Taskmaster.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/Taskmaster.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/Util.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/Util.cpython-38.pyc
|
||||
lib/scons/SCons/__pycache__/Warnings.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/__pycache__/Warnings.cpython-38.pyc
|
||||
lib/scons/SCons/Action.py
|
||||
lib/scons/SCons/Builder.py
|
||||
lib/scons/SCons/CacheDir.py
|
||||
lib/scons/SCons/compat/__init__.py
|
||||
lib/scons/SCons/compat/__pycache__/__init__.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/compat/__pycache__/__init__.cpython-38.pyc
|
||||
lib/scons/SCons/compat/__pycache__/_scons_dbm.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/compat/__pycache__/_scons_dbm.cpython-38.pyc
|
||||
lib/scons/SCons/compat/_scons_dbm.py
|
||||
lib/scons/SCons/Conftest.py
|
||||
lib/scons/SCons/cpp.py
|
||||
lib/scons/SCons/dblite.py
|
||||
lib/scons/SCons/Debug.py
|
||||
lib/scons/SCons/Defaults.py
|
||||
lib/scons/SCons/Environment.py
|
||||
lib/scons/SCons/Errors.py
|
||||
lib/scons/SCons/Executor.py
|
||||
lib/scons/SCons/exitfuncs.py
|
||||
lib/scons/SCons/Job.py
|
||||
lib/scons/SCons/Memoize.py
|
||||
lib/scons/SCons/Node/__init__.py
|
||||
lib/scons/SCons/Node/__pycache__/__init__.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Node/__pycache__/__init__.cpython-38.pyc
|
||||
lib/scons/SCons/Node/__pycache__/Alias.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Node/__pycache__/Alias.cpython-38.pyc
|
||||
lib/scons/SCons/Node/__pycache__/FS.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Node/__pycache__/FS.cpython-38.pyc
|
||||
lib/scons/SCons/Node/__pycache__/Python.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Node/__pycache__/Python.cpython-38.pyc
|
||||
lib/scons/SCons/Node/Alias.py
|
||||
lib/scons/SCons/Node/FS.py
|
||||
lib/scons/SCons/Node/Python.py
|
||||
lib/scons/SCons/PathList.py
|
||||
lib/scons/SCons/Platform/__init__.py
|
||||
lib/scons/SCons/Platform/__pycache__/__init__.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/__init__.cpython-38.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/aix.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/aix.cpython-38.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/cygwin.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/cygwin.cpython-38.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/darwin.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/darwin.cpython-38.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/hpux.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/hpux.cpython-38.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/irix.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/irix.cpython-38.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/mingw.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/mingw.cpython-38.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/os2.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/os2.cpython-38.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/posix.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/posix.cpython-38.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/sunos.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/sunos.cpython-38.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/virtualenv.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/virtualenv.cpython-38.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/win32.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Platform/__pycache__/win32.cpython-38.pyc
|
||||
lib/scons/SCons/Platform/aix.py
|
||||
lib/scons/SCons/Platform/cygwin.py
|
||||
lib/scons/SCons/Platform/darwin.py
|
||||
lib/scons/SCons/Platform/hpux.py
|
||||
lib/scons/SCons/Platform/irix.py
|
||||
lib/scons/SCons/Platform/mingw.py
|
||||
lib/scons/SCons/Platform/os2.py
|
||||
lib/scons/SCons/Platform/posix.py
|
||||
lib/scons/SCons/Platform/sunos.py
|
||||
lib/scons/SCons/Platform/virtualenv.py
|
||||
lib/scons/SCons/Platform/win32.py
|
||||
lib/scons/SCons/Scanner/__init__.py
|
||||
lib/scons/SCons/Scanner/__pycache__/__init__.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/__init__.cpython-38.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/C.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/C.cpython-38.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/D.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/D.cpython-38.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/Dir.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/Dir.cpython-38.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/Fortran.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/Fortran.cpython-38.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/IDL.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/IDL.cpython-38.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/LaTeX.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/LaTeX.cpython-38.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/Prog.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/Prog.cpython-38.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/RC.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/RC.cpython-38.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/SWIG.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Scanner/__pycache__/SWIG.cpython-38.pyc
|
||||
lib/scons/SCons/Scanner/C.py
|
||||
lib/scons/SCons/Scanner/D.py
|
||||
lib/scons/SCons/Scanner/Dir.py
|
||||
lib/scons/SCons/Scanner/Fortran.py
|
||||
lib/scons/SCons/Scanner/IDL.py
|
||||
lib/scons/SCons/Scanner/LaTeX.py
|
||||
lib/scons/SCons/Scanner/Prog.py
|
||||
lib/scons/SCons/Scanner/RC.py
|
||||
lib/scons/SCons/Scanner/SWIG.py
|
||||
lib/scons/SCons/SConf.py
|
||||
lib/scons/SCons/SConsign.py
|
||||
lib/scons/SCons/Script/__init__.py
|
||||
lib/scons/SCons/Script/__pycache__/__init__.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Script/__pycache__/__init__.cpython-38.pyc
|
||||
lib/scons/SCons/Script/__pycache__/Interactive.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Script/__pycache__/Interactive.cpython-38.pyc
|
||||
lib/scons/SCons/Script/__pycache__/Main.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Script/__pycache__/Main.cpython-38.pyc
|
||||
lib/scons/SCons/Script/__pycache__/SConscript.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Script/__pycache__/SConscript.cpython-38.pyc
|
||||
lib/scons/SCons/Script/__pycache__/SConsOptions.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Script/__pycache__/SConsOptions.cpython-38.pyc
|
||||
lib/scons/SCons/Script/Interactive.py
|
||||
lib/scons/SCons/Script/Main.py
|
||||
lib/scons/SCons/Script/SConscript.py
|
||||
lib/scons/SCons/Script/SConsOptions.py
|
||||
lib/scons/SCons/Subst.py
|
||||
lib/scons/SCons/Taskmaster.py
|
||||
lib/scons/SCons/Tool/__init__.py
|
||||
lib/scons/SCons/Tool/__pycache__/__init__.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/__init__.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/386asm.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/386asm.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/aixc++.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/aixc++.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/aixcc.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/aixcc.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/aixcxx.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/aixcxx.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/aixf77.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/aixf77.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/aixlink.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/aixlink.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/applelink.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/applelink.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/ar.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/ar.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/as.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/as.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/bcc32.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/bcc32.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/c++.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/c++.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/cc.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/cc.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/clang.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/clang.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/clangxx.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/clangxx.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/cvf.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/cvf.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/cxx.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/cxx.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/cyglink.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/cyglink.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/DCommon.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/DCommon.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/default.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/default.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/dmd.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/dmd.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/dvi.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/dvi.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/dvipdf.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/dvipdf.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/dvips.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/dvips.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/f03.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/f03.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/f08.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/f08.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/f77.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/f77.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/f90.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/f90.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/f95.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/f95.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/filesystem.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/filesystem.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/fortran.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/fortran.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/FortranCommon.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/FortranCommon.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/g++.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/g++.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/g77.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/g77.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/gas.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/gas.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/gcc.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/gcc.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/gdc.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/gdc.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/gettext_tool.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/gettext_tool.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/GettextCommon.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/GettextCommon.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/gfortran.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/gfortran.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/gnulink.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/gnulink.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/gs.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/gs.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/gxx.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/gxx.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/hpc++.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/hpc++.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/hpcc.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/hpcc.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/hpcxx.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/hpcxx.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/hplink.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/hplink.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/icc.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/icc.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/icl.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/icl.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/ifl.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/ifl.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/ifort.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/ifort.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/ilink.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/ilink.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/ilink32.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/ilink32.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/install.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/install.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/intelc.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/intelc.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/ipkg.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/ipkg.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/jar.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/jar.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/javac.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/javac.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/JavaCommon.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/JavaCommon.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/javah.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/javah.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/latex.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/latex.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/ldc.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/ldc.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/lex.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/lex.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/link.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/link.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/linkloc.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/linkloc.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/m4.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/m4.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/masm.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/masm.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/midl.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/midl.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/mingw.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/mingw.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/msgfmt.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/msgfmt.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/msginit.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/msginit.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/msgmerge.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/msgmerge.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/mslib.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/mslib.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/mslink.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/mslink.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/mssdk.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/mssdk.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/msvc.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/msvc.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/msvs.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/msvs.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/mwcc.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/mwcc.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/mwld.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/mwld.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/nasm.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/nasm.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/pdf.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/pdf.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/pdflatex.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/pdflatex.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/pdftex.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/pdftex.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/PharLapCommon.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/PharLapCommon.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/qt.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/qt.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/rmic.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/rmic.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/rpcgen.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/rpcgen.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/rpm.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/rpm.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/rpmutils.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/rpmutils.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sgiar.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sgiar.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sgic++.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sgic++.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sgicc.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sgicc.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sgicxx.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sgicxx.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sgilink.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sgilink.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sunar.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sunar.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sunc++.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sunc++.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/suncc.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/suncc.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/suncxx.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/suncxx.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sunf77.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sunf77.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sunf90.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sunf90.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sunf95.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sunf95.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sunlink.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/sunlink.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/swig.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/swig.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/tar.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/tar.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/tex.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/tex.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/textfile.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/textfile.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/tlib.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/tlib.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/wix.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/wix.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/xgettext.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/xgettext.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/yacc.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/yacc.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/zip.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/__pycache__/zip.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/386asm.py
|
||||
lib/scons/SCons/Tool/aixc++.py
|
||||
lib/scons/SCons/Tool/aixcc.py
|
||||
lib/scons/SCons/Tool/aixcxx.py
|
||||
lib/scons/SCons/Tool/aixf77.py
|
||||
lib/scons/SCons/Tool/aixlink.py
|
||||
lib/scons/SCons/Tool/applelink.py
|
||||
lib/scons/SCons/Tool/ar.py
|
||||
lib/scons/SCons/Tool/as.py
|
||||
lib/scons/SCons/Tool/bcc32.py
|
||||
lib/scons/SCons/Tool/c++.py
|
||||
lib/scons/SCons/Tool/cc.py
|
||||
lib/scons/SCons/Tool/clang.py
|
||||
lib/scons/SCons/Tool/clangCommon/__init__.py
|
||||
lib/scons/SCons/Tool/clangCommon/__pycache__/__init__.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/clangCommon/__pycache__/__init__.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/clangxx.py
|
||||
lib/scons/SCons/Tool/cvf.py
|
||||
lib/scons/SCons/Tool/cxx.py
|
||||
lib/scons/SCons/Tool/cyglink.py
|
||||
lib/scons/SCons/Tool/DCommon.py
|
||||
lib/scons/SCons/Tool/default.py
|
||||
lib/scons/SCons/Tool/dmd.py
|
||||
lib/scons/SCons/Tool/docbook/__init__.py
|
||||
lib/scons/SCons/Tool/docbook/__pycache__/__init__.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/docbook/__pycache__/__init__.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/dvi.py
|
||||
lib/scons/SCons/Tool/dvipdf.py
|
||||
lib/scons/SCons/Tool/dvips.py
|
||||
lib/scons/SCons/Tool/f03.py
|
||||
lib/scons/SCons/Tool/f08.py
|
||||
lib/scons/SCons/Tool/f77.py
|
||||
lib/scons/SCons/Tool/f90.py
|
||||
lib/scons/SCons/Tool/f95.py
|
||||
lib/scons/SCons/Tool/filesystem.py
|
||||
lib/scons/SCons/Tool/fortran.py
|
||||
lib/scons/SCons/Tool/FortranCommon.py
|
||||
lib/scons/SCons/Tool/g++.py
|
||||
lib/scons/SCons/Tool/g77.py
|
||||
lib/scons/SCons/Tool/gas.py
|
||||
lib/scons/SCons/Tool/gcc.py
|
||||
lib/scons/SCons/Tool/gdc.py
|
||||
lib/scons/SCons/Tool/gettext_tool.py
|
||||
lib/scons/SCons/Tool/GettextCommon.py
|
||||
lib/scons/SCons/Tool/gfortran.py
|
||||
lib/scons/SCons/Tool/gnulink.py
|
||||
lib/scons/SCons/Tool/gs.py
|
||||
lib/scons/SCons/Tool/gxx.py
|
||||
lib/scons/SCons/Tool/hpc++.py
|
||||
lib/scons/SCons/Tool/hpcc.py
|
||||
lib/scons/SCons/Tool/hpcxx.py
|
||||
lib/scons/SCons/Tool/hplink.py
|
||||
lib/scons/SCons/Tool/icc.py
|
||||
lib/scons/SCons/Tool/icl.py
|
||||
lib/scons/SCons/Tool/ifl.py
|
||||
lib/scons/SCons/Tool/ifort.py
|
||||
lib/scons/SCons/Tool/ilink.py
|
||||
lib/scons/SCons/Tool/ilink32.py
|
||||
lib/scons/SCons/Tool/install.py
|
||||
lib/scons/SCons/Tool/intelc.py
|
||||
lib/scons/SCons/Tool/ipkg.py
|
||||
lib/scons/SCons/Tool/jar.py
|
||||
lib/scons/SCons/Tool/javac.py
|
||||
lib/scons/SCons/Tool/JavaCommon.py
|
||||
lib/scons/SCons/Tool/javah.py
|
||||
lib/scons/SCons/Tool/latex.py
|
||||
lib/scons/SCons/Tool/ldc.py
|
||||
lib/scons/SCons/Tool/lex.py
|
||||
lib/scons/SCons/Tool/link.py
|
||||
lib/scons/SCons/Tool/linkloc.py
|
||||
lib/scons/SCons/Tool/m4.py
|
||||
lib/scons/SCons/Tool/masm.py
|
||||
lib/scons/SCons/Tool/midl.py
|
||||
lib/scons/SCons/Tool/mingw.py
|
||||
lib/scons/SCons/Tool/MSCommon/__init__.py
|
||||
lib/scons/SCons/Tool/MSCommon/__pycache__/__init__.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/MSCommon/__pycache__/__init__.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/MSCommon/__pycache__/arch.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/MSCommon/__pycache__/arch.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/MSCommon/__pycache__/common.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/MSCommon/__pycache__/common.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/MSCommon/__pycache__/netframework.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/MSCommon/__pycache__/netframework.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/MSCommon/__pycache__/sdk.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/MSCommon/__pycache__/sdk.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/MSCommon/__pycache__/vc.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/MSCommon/__pycache__/vc.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/MSCommon/__pycache__/vs.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/MSCommon/__pycache__/vs.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/MSCommon/arch.py
|
||||
lib/scons/SCons/Tool/MSCommon/common.py
|
||||
lib/scons/SCons/Tool/MSCommon/netframework.py
|
||||
lib/scons/SCons/Tool/MSCommon/sdk.py
|
||||
lib/scons/SCons/Tool/MSCommon/vc.py
|
||||
lib/scons/SCons/Tool/MSCommon/vs.py
|
||||
lib/scons/SCons/Tool/msgfmt.py
|
||||
lib/scons/SCons/Tool/msginit.py
|
||||
lib/scons/SCons/Tool/msgmerge.py
|
||||
lib/scons/SCons/Tool/mslib.py
|
||||
lib/scons/SCons/Tool/mslink.py
|
||||
lib/scons/SCons/Tool/mssdk.py
|
||||
lib/scons/SCons/Tool/msvc.py
|
||||
lib/scons/SCons/Tool/msvs.py
|
||||
lib/scons/SCons/Tool/mwcc.py
|
||||
lib/scons/SCons/Tool/mwld.py
|
||||
lib/scons/SCons/Tool/nasm.py
|
||||
lib/scons/SCons/Tool/packaging/__init__.py
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/__init__.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/__init__.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/ipk.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/ipk.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/msi.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/msi.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/rpm.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/rpm.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/src_tarbz2.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/src_tarbz2.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/src_targz.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/src_targz.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/src_tarxz.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/src_tarxz.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/src_zip.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/src_zip.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/tarbz2.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/tarbz2.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/targz.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/targz.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/tarxz.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/tarxz.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/zip.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Tool/packaging/__pycache__/zip.cpython-38.pyc
|
||||
lib/scons/SCons/Tool/packaging/ipk.py
|
||||
lib/scons/SCons/Tool/packaging/msi.py
|
||||
lib/scons/SCons/Tool/packaging/rpm.py
|
||||
lib/scons/SCons/Tool/packaging/src_tarbz2.py
|
||||
lib/scons/SCons/Tool/packaging/src_targz.py
|
||||
lib/scons/SCons/Tool/packaging/src_tarxz.py
|
||||
lib/scons/SCons/Tool/packaging/src_zip.py
|
||||
lib/scons/SCons/Tool/packaging/tarbz2.py
|
||||
lib/scons/SCons/Tool/packaging/targz.py
|
||||
lib/scons/SCons/Tool/packaging/tarxz.py
|
||||
lib/scons/SCons/Tool/packaging/zip.py
|
||||
lib/scons/SCons/Tool/pdf.py
|
||||
lib/scons/SCons/Tool/pdflatex.py
|
||||
lib/scons/SCons/Tool/pdftex.py
|
||||
lib/scons/SCons/Tool/PharLapCommon.py
|
||||
lib/scons/SCons/Tool/qt.py
|
||||
lib/scons/SCons/Tool/rmic.py
|
||||
lib/scons/SCons/Tool/rpcgen.py
|
||||
lib/scons/SCons/Tool/rpm.py
|
||||
lib/scons/SCons/Tool/rpmutils.py
|
||||
lib/scons/SCons/Tool/sgiar.py
|
||||
lib/scons/SCons/Tool/sgic++.py
|
||||
lib/scons/SCons/Tool/sgicc.py
|
||||
lib/scons/SCons/Tool/sgicxx.py
|
||||
lib/scons/SCons/Tool/sgilink.py
|
||||
lib/scons/SCons/Tool/sunar.py
|
||||
lib/scons/SCons/Tool/sunc++.py
|
||||
lib/scons/SCons/Tool/suncc.py
|
||||
lib/scons/SCons/Tool/suncxx.py
|
||||
lib/scons/SCons/Tool/sunf77.py
|
||||
lib/scons/SCons/Tool/sunf90.py
|
||||
lib/scons/SCons/Tool/sunf95.py
|
||||
lib/scons/SCons/Tool/sunlink.py
|
||||
lib/scons/SCons/Tool/swig.py
|
||||
lib/scons/SCons/Tool/tar.py
|
||||
lib/scons/SCons/Tool/tex.py
|
||||
lib/scons/SCons/Tool/textfile.py
|
||||
lib/scons/SCons/Tool/tlib.py
|
||||
lib/scons/SCons/Tool/wix.py
|
||||
lib/scons/SCons/Tool/xgettext.py
|
||||
lib/scons/SCons/Tool/yacc.py
|
||||
lib/scons/SCons/Tool/zip.py
|
||||
lib/scons/SCons/Util.py
|
||||
lib/scons/SCons/Variables/__init__.py
|
||||
lib/scons/SCons/Variables/__pycache__/__init__.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Variables/__pycache__/__init__.cpython-38.pyc
|
||||
lib/scons/SCons/Variables/__pycache__/BoolVariable.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Variables/__pycache__/BoolVariable.cpython-38.pyc
|
||||
lib/scons/SCons/Variables/__pycache__/EnumVariable.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Variables/__pycache__/EnumVariable.cpython-38.pyc
|
||||
lib/scons/SCons/Variables/__pycache__/ListVariable.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Variables/__pycache__/ListVariable.cpython-38.pyc
|
||||
lib/scons/SCons/Variables/__pycache__/PackageVariable.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Variables/__pycache__/PackageVariable.cpython-38.pyc
|
||||
lib/scons/SCons/Variables/__pycache__/PathVariable.cpython-38.opt-1.pyc
|
||||
lib/scons/SCons/Variables/__pycache__/PathVariable.cpython-38.pyc
|
||||
lib/scons/SCons/Variables/BoolVariable.py
|
||||
lib/scons/SCons/Variables/EnumVariable.py
|
||||
lib/scons/SCons/Variables/ListVariable.py
|
||||
lib/scons/SCons/Variables/PackageVariable.py
|
||||
lib/scons/SCons/Variables/PathVariable.py
|
||||
lib/scons/SCons/Warnings.py
|
||||
man/man1/scons-3.8.1.gz
|
||||
man/man1/scons-time-3.8.1.gz
|
||||
man/man1/scons-time.1.gz
|
||||
man/man1/scons.1.gz
|
||||
man/man1/sconsign-3.8.1.gz
|
||||
man/man1/sconsign.1.gz
|
||||
@dir lib/scons/SCons/__pycache__
|
||||
@dir lib/scons/SCons/compat/__pycache__
|
||||
@dir lib/scons/SCons/compat
|
||||
@dir lib/scons/SCons/Node/__pycache__
|
||||
@dir lib/scons/SCons/Node
|
||||
@dir lib/scons/SCons/Platform/__pycache__
|
||||
@dir lib/scons/SCons/Platform
|
||||
@dir lib/scons/SCons/Scanner/__pycache__
|
||||
@dir lib/scons/SCons/Scanner
|
||||
@dir lib/scons/SCons/Script/__pycache__
|
||||
@dir lib/scons/SCons/Script
|
||||
@dir lib/scons/SCons/Tool/__pycache__
|
||||
@dir lib/scons/SCons/Tool/clangCommon/__pycache__
|
||||
@dir lib/scons/SCons/Tool/clangCommon
|
||||
@dir lib/scons/SCons/Tool/docbook/__pycache__
|
||||
@dir lib/scons/SCons/Tool/docbook
|
||||
@dir lib/scons/SCons/Tool/MSCommon/__pycache__
|
||||
@dir lib/scons/SCons/Tool/MSCommon
|
||||
@dir lib/scons/SCons/Tool/packaging/__pycache__
|
||||
@dir lib/scons/SCons/Tool/packaging
|
||||
@dir lib/scons/SCons/Tool
|
||||
@dir lib/scons/SCons/Variables/__pycache__
|
||||
@dir lib/scons/SCons/Variables
|
||||
@dir lib/scons/SCons
|
||||
@dir lib/scons/scons-3.1.2-py3.8.egg-info
|
||||
@dir lib/scons
|
||||
@@ -2,14 +2,14 @@
|
||||
|
||||
PORTNAME= yarn
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.19.1
|
||||
DISTVERSION= 1.22.4
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= https://yarnpkg.com/downloads/${PORTVERSION}/
|
||||
|
||||
MAINTAINER= pizzamig@FreeBSD.org
|
||||
COMMENT= Package manager for node, alternative to npm
|
||||
|
||||
RUN_DEPENDS= node>=10.0:lang/node13
|
||||
RUN_DEPENDS= node>=10.0:lang/node14
|
||||
|
||||
NO_ARCH= yes
|
||||
NO_BUILD= yes
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1573658684
|
||||
SHA256 (yarn-v1.19.1.tar.gz) = 34293da6266f2aae9690d59c2d764056053ff7eebc56b80b8df05010c3da9343
|
||||
SIZE (yarn-v1.19.1.tar.gz) = 1243585
|
||||
TIMESTAMP = 1601602979
|
||||
SHA256 (yarn-v1.22.4.tar.gz) = bc5316aa110b2f564a71a3d6e235be55b98714660870c5b6b2d2d3f12587fb58
|
||||
SIZE (yarn-v1.22.4.tar.gz) = 1244785
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
# $FreeBSD: head/lang/go/Makefile 470619 2018-05-22 14:32:09Z jlaffaye $
|
||||
|
||||
PORTNAME= go
|
||||
PORTVERSION= 1.15
|
||||
PORTVERSION= 1.15.2
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= https://golang.org/dl/
|
||||
DISTNAME= go${PORTVERSION}.src
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1598518026
|
||||
SHA256 (go1.15.src.tar.gz) = 69438f7ed4f532154ffaf878f3dfd83747e7a00b70b3556eddabf7aaee28ac3a
|
||||
SIZE (go1.15.src.tar.gz) = 23002901
|
||||
TIMESTAMP = 1601603192
|
||||
SHA256 (go1.15.2.src.tar.gz) = 28bf9d0bcde251011caae230a4a05d917b172ea203f2a62f2c2f9533589d4b4d
|
||||
SIZE (go1.15.2.src.tar.gz) = 23012667
|
||||
|
||||
@@ -2314,6 +2314,8 @@ lib/go/src/cmd/go/testdata/script/test_flags.txt
|
||||
lib/go/src/cmd/go/testdata/script/test_generated_main.txt
|
||||
lib/go/src/cmd/go/testdata/script/test_go111module_cache.txt
|
||||
lib/go/src/cmd/go/testdata/script/test_import_error_stack.txt
|
||||
lib/go/src/cmd/go/testdata/script/test_json_exit.txt
|
||||
lib/go/src/cmd/go/testdata/script/test_json_interleaved.txt
|
||||
lib/go/src/cmd/go/testdata/script/test_json_panic_exit.txt
|
||||
lib/go/src/cmd/go/testdata/script/test_json.txt
|
||||
lib/go/src/cmd/go/testdata/script/test_main_archive.txt
|
||||
@@ -2355,6 +2357,7 @@ lib/go/src/cmd/go/testdata/script/test_vendor.txt
|
||||
lib/go/src/cmd/go/testdata/script/test_vet.txt
|
||||
lib/go/src/cmd/go/testdata/script/test_write_profiles_on_timeout.txt
|
||||
lib/go/src/cmd/go/testdata/script/test_xtestonly_works.txt
|
||||
lib/go/src/cmd/go/testdata/script/testing_issue40908.txt
|
||||
lib/go/src/cmd/go/testdata/script/vendor_complex.txt
|
||||
lib/go/src/cmd/go/testdata/script/vendor_gopath_issue11409.txt
|
||||
lib/go/src/cmd/go/testdata/script/vendor_import_missing.txt
|
||||
@@ -8923,8 +8926,10 @@ lib/go/test/fixedbugs/issue39541.go
|
||||
lib/go/test/fixedbugs/issue39651.go
|
||||
lib/go/test/fixedbugs/issue40367.go
|
||||
lib/go/test/fixedbugs/issue4066.go
|
||||
lib/go/test/fixedbugs/issue40746.go
|
||||
lib/go/test/fixedbugs/issue4085a.go
|
||||
lib/go/test/fixedbugs/issue4085b.go
|
||||
lib/go/test/fixedbugs/issue40917.go
|
||||
lib/go/test/fixedbugs/issue4097.go
|
||||
lib/go/test/fixedbugs/issue4099.go
|
||||
lib/go/test/fixedbugs/issue4162.go
|
||||
|
||||
74
lang/node14/Makefile
Normal file
74
lang/node14/Makefile
Normal file
@@ -0,0 +1,74 @@
|
||||
# $FreeBSD: head/www/node/Makefile 453790 2017-11-09 02:31:47Z jbeich $
|
||||
|
||||
PORTNAME= node
|
||||
PORTVERSION= 14.12.0
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/
|
||||
|
||||
MAINTAINER= bhughes@FreeBSD.org
|
||||
COMMENT= V8 JavaScript for client and server
|
||||
|
||||
LIB_DEPENDS+= libicui18n.so:devel/libicu
|
||||
LIB_DEPENDS+= libcares.so:net/libcares
|
||||
LIB_DEPENDS+= libuv.so:devel/libuv
|
||||
|
||||
CONFLICTS_INSTALL= node[4568]-[0-9]*
|
||||
ONLY_FOR_ARCHS= aarch64 amd64 armv6 armv7 i386
|
||||
|
||||
USES= compiler:c++11-lib gmake python:2.7,build pkgconfig localbase shebangfix
|
||||
|
||||
HAS_CONFIGURE= yes
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
|
||||
PREFIX_RELDEST= ${PREFIX:S,^${DESTDIR},,}
|
||||
REINPLACE_ARGS= -i ''
|
||||
CONFIGURE_ARGS+= --prefix=${PREFIX_RELDEST}
|
||||
CONFIGURE_ARGS+= --without-npm
|
||||
CONFIGURE_ARGS+= --shared-cares
|
||||
CONFIGURE_ARGS+= --shared-libuv
|
||||
CONFIGURE_ARGS+= --shared-zlib
|
||||
#CONFIGURE_ARGS+= --with-intl=system-icu
|
||||
|
||||
SHEBANG_FILES= deps/v8/tools/*.py \
|
||||
deps/v8/third_party/inspector_protocol/*.py \
|
||||
tools/*.py \
|
||||
tools/inspector_protocol/*.py
|
||||
|
||||
|
||||
MAKE_ENV+= CC.host=${CC} CXX.host=${CXX} LINK.host=${CXX} LINK.target=${CXX}
|
||||
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${ARCH} == armv6 || ${ARCH} == armv7
|
||||
CONFIGURE_ARGS+=--openssl-no-asm
|
||||
.endif
|
||||
|
||||
#.if ${COMPILER_TYPE} == gcc
|
||||
## GCC does not expose std::snprintf() without this define
|
||||
#CXXFLAGS+= -D_GLIBCXX_USE_C99
|
||||
#.endif
|
||||
|
||||
post-patch:
|
||||
# ${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \
|
||||
# ${WRKSRC}/deps/v8/gypfiles/v8.gyp
|
||||
|
||||
post-configure:
|
||||
# Post-process Makefile and *.mk files created by node-gyp and remove
|
||||
# all occurrences of -I${LOCALBASE}/include. C*FLAGS include this
|
||||
# before all -I../deps/* for bundled code. This can cause build
|
||||
# breakages if the dependency is installed in ${LOCALBASE}. The
|
||||
# USES+=localbase # above will ensure that we pick up includes for real
|
||||
# external dependencies.
|
||||
${FIND} ${WRKSRC}/out -type f -print0 \
|
||||
| ${XARGS} -0 ${REINPLACE_CMD} -e "s|-I${LOCALBASE}/include||g"
|
||||
|
||||
post-install:
|
||||
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/node
|
||||
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
#EOF
|
||||
3
lang/node14/distinfo
Normal file
3
lang/node14/distinfo
Normal file
@@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1601387924
|
||||
SHA256 (node-v14.12.0.tar.gz) = caa31eb22f18b0d26d2867002f65f313b619bc3ebfae409fcefbd6a15372ca7e
|
||||
SIZE (node-v14.12.0.tar.gz) = 63041509
|
||||
@@ -0,0 +1,11 @@
|
||||
--- deps/openssl/config/archs/linux-elf/no-asm/openssl-cl.gypi.orig 2019-08-06 20:46:23 UTC
|
||||
+++ deps/openssl/config/archs/linux-elf/no-asm/openssl-cl.gypi
|
||||
@@ -12,7 +12,7 @@
|
||||
'-Wall -O3 -fomit-frame-pointer',
|
||||
],
|
||||
'openssl_ex_libs_linux-elf': [
|
||||
- '-ldl -pthread',
|
||||
+ '-pthread',
|
||||
],
|
||||
'openssl_cli_srcs_linux-elf': [
|
||||
'openssl/apps/asn1pars.c',
|
||||
@@ -0,0 +1,11 @@
|
||||
--- deps/openssl/config/archs/linux-elf/no-asm/openssl.gypi.orig 2019-08-06 20:46:23 UTC
|
||||
+++ deps/openssl/config/archs/linux-elf/no-asm/openssl.gypi
|
||||
@@ -696,7 +696,7 @@
|
||||
'-Wall -O3 -fomit-frame-pointer',
|
||||
],
|
||||
'openssl_ex_libs_linux-elf': [
|
||||
- '-ldl -pthread',
|
||||
+ '-pthread',
|
||||
],
|
||||
},
|
||||
'include_dirs': [
|
||||
@@ -0,0 +1,17 @@
|
||||
--- deps/openssl/openssl-cl_no_asm.gypi.orig 2020-09-08 12:17:10 UTC
|
||||
+++ deps/openssl/openssl-cl_no_asm.gypi
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
+ 'defines': ['OPENSSL_NO_ASM'],
|
||||
'conditions': [
|
||||
['target_arch=="ppc" and OS=="aix"', {
|
||||
'includes': ['config/archs/aix-gcc/no-asm/openssl-cl.gypi'],
|
||||
@@ -47,7 +48,7 @@
|
||||
'includes': ['config/archs/linux64-mips64/no-asm/openssl-cl.gypi'],
|
||||
}, {
|
||||
# Other architectures don't use assembly
|
||||
- 'includes': ['config/archs/linux-x86_64/no-asm/openssl-cl.gypi'],
|
||||
+ 'includes': ['config/archs/linux-elf/no-asm/openssl-cl.gypi'],
|
||||
}],
|
||||
],
|
||||
}
|
||||
11
lang/node14/files/patch-deps_openssl_openssl__no__asm.gypi
Normal file
11
lang/node14/files/patch-deps_openssl_openssl__no__asm.gypi
Normal file
@@ -0,0 +1,11 @@
|
||||
--- deps/openssl/openssl_no_asm.gypi.orig 2020-09-08 12:17:11 UTC
|
||||
+++ deps/openssl/openssl_no_asm.gypi
|
||||
@@ -48,7 +48,7 @@
|
||||
'includes': ['config/archs/linux64-mips64/no-asm/openssl.gypi'],
|
||||
}, {
|
||||
# Other architectures don't use assembly
|
||||
- 'includes': ['config/archs/linux-x86_64/no-asm/openssl.gypi'],
|
||||
+ 'includes': ['config/archs/linux-elf/no-asm/openssl.gypi'],
|
||||
}],
|
||||
],
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
--- deps/v8/src/base/platform/platform-freebsd.cc.orig 2020-06-30 17:49:16 UTC
|
||||
+++ deps/v8/src/base/platform/platform-freebsd.cc
|
||||
@@ -82,8 +82,8 @@ std::vector<OS::SharedLibraryAddress> OS::GetSharedLib
|
||||
lib_name = std::string(path);
|
||||
}
|
||||
result.push_back(SharedLibraryAddress(
|
||||
- lib_name, reinterpret_cast<uintptr_t>(map->kve_start),
|
||||
- reinterpret_cast<uintptr_t>(map->kve_end)));
|
||||
+ lib_name, static_cast<uintptr_t>(map->kve_start),
|
||||
+ static_cast<uintptr_t>(map->kve_end)));
|
||||
}
|
||||
|
||||
start += ssize;
|
||||
@@ -94,6 +94,48 @@ std::vector<OS::SharedLibraryAddress> OS::GetSharedLib
|
||||
}
|
||||
|
||||
void OS::SignalCodeMovingGC() {}
|
||||
+
|
||||
+#ifdef __arm__
|
||||
+
|
||||
+bool OS::ArmUsingHardFloat() {
|
||||
+// GCC versions 4.6 and above define __ARM_PCS or __ARM_PCS_VFP to specify
|
||||
+// the Floating Point ABI used (PCS stands for Procedure Call Standard).
|
||||
+// We use these as well as a couple of other defines to statically determine
|
||||
+// what FP ABI used.
|
||||
+// GCC versions 4.4 and below don't support hard-fp.
|
||||
+// GCC versions 4.5 may support hard-fp without defining __ARM_PCS or
|
||||
+// __ARM_PCS_VFP.
|
||||
+
|
||||
+#define GCC_VERSION \
|
||||
+ (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
|
||||
+#if GCC_VERSION >= 40600 && !defined(__clang__)
|
||||
+#if defined(__ARM_PCS_VFP)
|
||||
+ return true;
|
||||
+#else
|
||||
+ return false;
|
||||
+#endif
|
||||
+
|
||||
+#elif GCC_VERSION < 40500 && !defined(__clang__)
|
||||
+ return false;
|
||||
+
|
||||
+#else
|
||||
+#if defined(__ARM_PCS_VFP)
|
||||
+ return true;
|
||||
+#elif defined(__ARM_PCS) || defined(__SOFTFP__) || defined(__SOFTFP) || \
|
||||
+ !defined(__VFP_FP__)
|
||||
+ return false;
|
||||
+#else
|
||||
+#error \
|
||||
+ "Your version of compiler does not report the FP ABI compiled for." \
|
||||
+ "Please report it on this issue" \
|
||||
+ "http://code.google.com/p/v8/issues/detail?id=2140"
|
||||
+
|
||||
+#endif
|
||||
+#endif
|
||||
+#undef GCC_VERSION
|
||||
+}
|
||||
+
|
||||
+#endif // def __arm__
|
||||
|
||||
void OS::AdjustSchedulingParams() {}
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
--- deps/v8/src/codegen/ppc/constants-ppc.h.orig 2020-06-30 17:49:17 UTC
|
||||
+++ deps/v8/src/codegen/ppc/constants-ppc.h
|
||||
@@ -36,7 +36,7 @@
|
||||
#endif
|
||||
|
||||
#if !(V8_HOST_ARCH_PPC || V8_HOST_ARCH_PPC64) || !V8_TARGET_ARCH_PPC64 || \
|
||||
- V8_TARGET_LITTLE_ENDIAN || (defined(_CALL_ELF) && _CALL_ELF == 2)
|
||||
+ (defined(_CALL_ELF) && _CALL_ELF == 2)
|
||||
#define ABI_RETURNS_OBJECT_PAIRS_IN_REGS 1
|
||||
#else
|
||||
#define ABI_RETURNS_OBJECT_PAIRS_IN_REGS 0
|
||||
@@ -44,7 +44,7 @@
|
||||
|
||||
#if !(V8_HOST_ARCH_PPC || V8_HOST_ARCH_PPC64) || \
|
||||
(V8_TARGET_ARCH_PPC64 && \
|
||||
- (V8_TARGET_LITTLE_ENDIAN || (defined(_CALL_ELF) && _CALL_ELF == 2)))
|
||||
+ (defined(_CALL_ELF) && _CALL_ELF == 2))
|
||||
#define ABI_CALL_VIA_IP 1
|
||||
#else
|
||||
#define ABI_CALL_VIA_IP 0
|
||||
@@ -0,0 +1,11 @@
|
||||
--- deps/v8/src/compiler/backend/instruction-selector.cc.orig 2020-07-20 22:18:45 UTC
|
||||
+++ deps/v8/src/compiler/backend/instruction-selector.cc
|
||||
@@ -2808,7 +2808,7 @@ void InstructionSelector::VisitCall(Node* node, BasicB
|
||||
switch (call_descriptor->kind()) {
|
||||
case CallDescriptor::kCallAddress: {
|
||||
int misc_field = static_cast<int>(call_descriptor->ParameterCount());
|
||||
-#if defined(_AIX)
|
||||
+#if defined(_AIX) || (V8_TARGET_ARCH_PPC_BE && (!defined(_CALL_ELF) || _CALL_ELF == 1))
|
||||
// Highest misc_field bit is used on AIX to indicate if a CFunction call
|
||||
// has function descriptor or not.
|
||||
if (!call_descriptor->NoFunctionDescriptor()) {
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user