mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 798129 - Unbreak --enable-jprof and --enable-dmd builds.
--HG-- extra : rebase_source : 3028a08a8546c58f7814bb8ae3c02719388633e7
This commit is contained in:
parent
0c77f7d61b
commit
3c85b6f213
@ -2710,11 +2710,11 @@ JProfSaveCircularJS(JSContext *cx, unsigned argc, jsval *vp)
|
||||
}
|
||||
|
||||
static JSFunctionSpec JProfFunctions[] = {
|
||||
{"JProfStartProfiling", JProfStartProfilingJS, 0, 0},
|
||||
{"JProfStopProfiling", JProfStopProfilingJS, 0, 0},
|
||||
{"JProfClearCircular", JProfClearCircularJS, 0, 0},
|
||||
{"JProfSaveCircular", JProfSaveCircularJS, 0, 0},
|
||||
{nullptr, nullptr, 0, 0}
|
||||
JS_FS("JProfStartProfiling", JProfStartProfilingJS, 0, 0),
|
||||
JS_FS("JProfStopProfiling", JProfStopProfilingJS, 0, 0),
|
||||
JS_FS("JProfClearCircular", JProfClearCircularJS, 0, 0),
|
||||
JS_FS("JProfSaveCircular", JProfSaveCircularJS, 0, 0),
|
||||
JS_FS_END
|
||||
};
|
||||
|
||||
#endif /* defined(MOZ_JPROF) */
|
||||
@ -2732,8 +2732,8 @@ DMDCheckJS(JSContext *cx, unsigned argc, jsval *vp)
|
||||
}
|
||||
|
||||
static JSFunctionSpec DMDFunctions[] = {
|
||||
{"DMD", DMDCheckJS, 0, 0},
|
||||
{nullptr, nullptr, 0, 0}
|
||||
JS_FS("DMD", DMDCheckJS, 0, 0),
|
||||
JS_FS_END
|
||||
};
|
||||
|
||||
#endif /* defined(MOZ_DMD) */
|
||||
|
Loading…
Reference in New Issue
Block a user