diff options
author | 2015-11-04 18:55:36 +0100 | |
---|---|---|
committer | 2015-11-04 18:55:36 +0100 | |
commit | b6707c3bb53c931e9ec3c5c6630149b7121bbcf5 (patch) | |
tree | 2d9c880bb21242c3fb4619977fe9a71658b3d06e /scripts | |
parent | 2a067f08a4582cdff841dc27b661a9e48fac419a (diff) |
Removed mongoose due to restricted license and webserver wip till code is restructured (nw)
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/src/3rdparty.lua | 40 | ||||
-rw-r--r-- | scripts/src/emu.lua | 2 | ||||
-rw-r--r-- | scripts/src/main.lua | 1 |
3 files changed, 0 insertions, 43 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua index 1b94702544b..06fbc35e71c 100644 --- a/scripts/src/3rdparty.lua +++ b/scripts/src/3rdparty.lua @@ -461,46 +461,6 @@ project "lsqlite3" } -------------------------------------------------- --- mongoose library objects --------------------------------------------------- - -project "mongoose" - uuid "ff05b529-2b6f-4166-9dff-5fe2aef89c40" - kind "StaticLib" - - configuration { "vs*" } - buildoptions { - "/wd4996", -- warning C4996: 'function': was declared deprecated - "/wd4100", -- warning C4100: 'xxx' : unreferenced formal parameter - "/wd4245", -- warning C4245: 'conversion' : conversion from 'type1' to 'type2', signed/unsigned mismatch - "/wd4267", -- warning C4267: 'var' : conversion from 'size_t' to 'type', possible loss of data - "/wd4244", -- warning C4244: 'argument' : conversion from 'xxx' to 'xxx', possible loss of data - } - - configuration { "vs2015" } - buildoptions { - "/wd4456", -- warning C4456: declaration of 'xxx' hides previous local declaration - } - - configuration { } - - options { - "ForceCPP", - } - defines { - "MONGOOSE_ENABLE_THREADS", - "NS_STACK_SIZE=0" - } - - includedirs { - MAME_DIR .. "3rdparty/mongoose", - } - - files { - MAME_DIR .. "3rdparty/mongoose/mongoose.c", - } - --------------------------------------------------- -- jsoncpp library objects -------------------------------------------------- diff --git a/scripts/src/emu.lua b/scripts/src/emu.lua index eded02ed368..de4197c84d7 100644 --- a/scripts/src/emu.lua +++ b/scripts/src/emu.lua @@ -245,8 +245,6 @@ files { MAME_DIR .. "src/emu/debug/textbuf.h", MAME_DIR .. "src/emu/profiler.c", MAME_DIR .. "src/emu/profiler.h", - MAME_DIR .. "src/emu/webengine.c", - MAME_DIR .. "src/emu/webengine.h", MAME_DIR .. "src/emu/sound/filter.c", MAME_DIR .. "src/emu/sound/filter.h", MAME_DIR .. "src/devices/sound/flt_vol.c", diff --git a/scripts/src/main.lua b/scripts/src/main.lua index d4d991dcdfa..20a3e5b6038 100644 --- a/scripts/src/main.lua +++ b/scripts/src/main.lua @@ -116,7 +116,6 @@ end "lua", "lsqlite3", "jsoncpp", - "mongoose", } if _OPTIONS["with-bundled-zlib"] then |