mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
Merge pull request #205 from thesamesam/mujs-build-fixes
Fix build failures with mujs
This commit is contained in:
commit
f2fa1d40e2
@ -41,6 +41,9 @@
|
||||
/* Unsafe macros */
|
||||
#include "document/html/internal.h"
|
||||
|
||||
#if defined(CONFIG_ECMASCRIPT_SMJS) || defined(CONFIG_QUICKJS) || defined(CONFIG_MUJS)
|
||||
#include "ecmascript/ecmascript.h"
|
||||
#endif
|
||||
|
||||
void
|
||||
html_span(struct html_context *html_context, char *a,
|
||||
|
@ -27,6 +27,10 @@
|
||||
/* Unsafe macros */
|
||||
#include "document/html/internal.h"
|
||||
|
||||
#if defined(CONFIG_ECMASCRIPT_SMJS) || defined(CONFIG_QUICKJS) || defined(CONFIG_MUJS)
|
||||
#include "ecmascript/ecmascript.h"
|
||||
#endif
|
||||
|
||||
#if 0 //def CONFIG_XML
|
||||
#include <libxml++/libxml++.h>
|
||||
#endif
|
||||
|
@ -5,6 +5,8 @@
|
||||
/* In the future you will get DOM, a complete ECMAScript interface and free
|
||||
* plasm displays for everyone. */
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user