mirror of
https://github.com/matrix-construct/construct
synced 2024-11-05 21:38:54 +01:00
fixup! ircd::js: Upgrade SpiderMonkey to esr52 from esr45.
This commit is contained in:
parent
3610dd9f9b
commit
48045d5b23
1 changed files with 24 additions and 0 deletions
|
@ -55,3 +55,27 @@ struct init
|
|||
|
||||
} // namespace js
|
||||
} // namespace ircd
|
||||
|
||||
#ifndef RB_ENABLE_JS
|
||||
//
|
||||
// Stub definitions for when JS isn't enabled because the definition
|
||||
// file is not compiled at all.
|
||||
//
|
||||
|
||||
inline
|
||||
ircd::js::init::init()
|
||||
{
|
||||
}
|
||||
|
||||
inline
|
||||
ircd::js::init::~init()
|
||||
{
|
||||
}
|
||||
|
||||
inline
|
||||
const char *ircd::js::version(const ver &ver)
|
||||
{
|
||||
return "DISABLED";
|
||||
}
|
||||
|
||||
#endif // !RB_ENABLE_JS
|
||||
|
|
Loading…
Reference in a new issue