diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
commit | 9e3c08db40b8916968b9f30096c7be3f00ce9647 (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /netwerk/sctp/src/moz.build | |
parent | Initial commit. (diff) | |
download | thunderbird-9e3c08db40b8916968b9f30096c7be3f00ce9647.tar.xz thunderbird-9e3c08db40b8916968b9f30096c7be3f00ce9647.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | netwerk/sctp/src/moz.build | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/netwerk/sctp/src/moz.build b/netwerk/sctp/src/moz.build new file mode 100644 index 0000000000..9fa9641276 --- /dev/null +++ b/netwerk/sctp/src/moz.build @@ -0,0 +1,58 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: +# 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/. + +EXPORTS.mozilla.net += [ + 'usrsctp.h', +] + +UNIFIED_SOURCES += [ + 'netinet/sctp_asconf.c', + 'netinet/sctp_auth.c', + 'netinet/sctp_bsd_addr.c', + 'netinet/sctp_callout.c', + 'netinet/sctp_cc_functions.c', + 'netinet/sctp_crc32.c', + 'netinet/sctp_indata.c', + 'netinet/sctp_input.c', + 'netinet/sctp_output.c', + 'netinet/sctp_pcb.c', + 'netinet/sctp_peeloff.c', + 'netinet/sctp_sha1.c', + 'netinet/sctp_ss_functions.c', + 'netinet/sctp_sysctl.c', + 'netinet/sctp_timer.c', + 'netinet/sctp_userspace.c', + 'netinet/sctp_usrreq.c', + 'netinet/sctputil.c', + 'netinet6/sctp6_usrreq.c', + 'user_environment.c', + 'user_mbuf.c', + 'user_recv_thread.c', + 'user_socket.c', +] + +Library('nksctp_s') + +# We allow warnings for third-party code that can be updated from upstream. +AllowCompilerWarnings() + +FINAL_LIBRARY = 'xul' + +LOCAL_INCLUDES += [ + '/dom/base', + '/netwerk/base', +] + +for var in ('__Userspace__', + 'SCTP_SIMPLE_ALLOCATOR', + 'SCTP_PROCESS_LEVEL_LOCKS', + 'SCTP_DEBUG'): + DEFINES[var] = 1 + +if CONFIG['OS_TARGET'] in ('Linux', 'Android'): + DEFINES['_GNU_SOURCE'] = 1 +elif CONFIG['OS_TARGET'] == 'Darwin': + DEFINES['__APPLE_USE_RFC_2292'] = 1 |