1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00

[viewer] This include was not needed

This commit is contained in:
Witold Filipczyk 2023-11-28 15:15:56 +01:00
parent 3dede92441
commit 88d836355d
2 changed files with 1 additions and 5 deletions

View File

@ -593,7 +593,7 @@ if not compiler.links('''#include <stdint.h>
return (int)__atomic_load_n(x.v, __ATOMIC_ACQUIRE) & (int)__atomic_add_fetch(x.v, (uint64_t)1, __ATOMIC_ACQ_REL);
}''',
name: 'GCC atomic builtins required -latomic')
dep_atomic = compiler.find_library('atomic', static: st)
dep_atomic = compiler.find_library('atomic', static: st, required: false)
endif
if conf_data.get('CONFIG_QUICKJS')

View File

@ -41,10 +41,6 @@
#include "ecmascript/mujs/element.h"
#endif
#if defined(CONFIG_ECMASCRIPT_SMJS) || defined(CONFIG_QUICKJS) || defined(CONFIG_MUJS)
#include <map>
#endif
#include "intl/libintl.h"
#include "main/object.h"
#include "protocol/uri.h"