mirror of
https://github.com/matrix-construct/construct
synced 2024-11-28 17:52:54 +01:00
ircd:Ⓜ️ Move modules/vm_fetch to central lib.
This commit is contained in:
parent
4ecb2d0d5f
commit
8abab587ac
4 changed files with 4 additions and 12 deletions
|
@ -170,6 +170,7 @@ libircd_matrix_la_SOURCES += vm.cc
|
|||
libircd_matrix_la_SOURCES += vm_eval.cc
|
||||
libircd_matrix_la_SOURCES += vm_inject.cc
|
||||
libircd_matrix_la_SOURCES += vm_execute.cc
|
||||
libircd_matrix_la_SOURCES += vm_fetch.cc
|
||||
libircd_matrix_la_SOURCES += init_backfill.cc
|
||||
libircd_matrix_la_SOURCES += homeserver.cc
|
||||
libircd_matrix_la_SOURCES += homeserver_bootstrap.cc
|
||||
|
|
|
@ -84,7 +84,6 @@ ircd::m::matrix::module_names
|
|||
"m_room_redaction",
|
||||
"m_room_server_acl",
|
||||
"m_room_third_party_invite",
|
||||
"m_vm_fetch",
|
||||
|
||||
"media_media",
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// Matrix Construct
|
||||
// The Construct
|
||||
//
|
||||
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
||||
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
||||
// Copyright (C) The Construct Developers, Authors & Contributors
|
||||
// Copyright (C) 2016-2020 Jason Volk <jason@zemos.net>
|
||||
//
|
||||
// Permission to use, copy, modify, and/or distribute this software for any
|
||||
// purpose with or without fee is hereby granted, provided that the above
|
||||
|
@ -35,12 +35,6 @@ namespace ircd::m::vm::fetch
|
|||
extern log::log log;
|
||||
}
|
||||
|
||||
ircd::mapi::header
|
||||
IRCD_MODULE
|
||||
{
|
||||
"Matrix VM Fetch Unit"
|
||||
};
|
||||
|
||||
decltype(ircd::m::vm::fetch::log)
|
||||
ircd::m::vm::fetch::log
|
||||
{
|
|
@ -106,7 +106,6 @@ m_room_power_levels_la_SOURCES = m_room_power_levels.cc
|
|||
m_room_redaction_la_SOURCES = m_room_redaction.cc
|
||||
m_room_server_acl_la_SOURCES = m_room_server_acl.cc
|
||||
m_room_third_party_invite_la_SOURCES = m_room_third_party_invite.cc
|
||||
m_vm_fetch_la_SOURCES = m_vm_fetch.cc
|
||||
|
||||
m_module_LTLIBRARIES = \
|
||||
m_breadcrumbs.la \
|
||||
|
@ -137,7 +136,6 @@ m_module_LTLIBRARIES = \
|
|||
m_room_redaction.la \
|
||||
m_room_server_acl.la \
|
||||
m_room_third_party_invite.la \
|
||||
m_vm_fetch.la \
|
||||
###
|
||||
|
||||
###############################################################################
|
||||
|
|
Loading…
Reference in a new issue