Home
last modified time | relevance | path

Searched +full:- +full:- +full:exclude (Results 1 – 5 of 5) sorted by relevance

/civetweb-2.7.6/
D.travis.yml10 - $HOME/third-party
17 - cmake
18 - openssl
19 - libssl-dev
21 - kubuntu-backports
25 - if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
28 wget https://cmake.org/files/v3.7/cmake-3.7.2-Linux-x86_64.sh --no-check-certificate;
29 chmod +x cmake-3.7.2-Linux-x86_64.sh;
30 ./cmake-3.7.2-Linux-x86_64.sh --prefix=$HOME/usr --exclude-subdir --skip-license;
32 - cmake --version
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.5.2/debugger/
DREADME.rst9 target supporting the example TCP transport (``examples/debug-trans-socket``)
40 $ make -f Makefile.dukdebug
54 $ ./duk --debugger mandel.js
58 $ ../../duk --debugger test-dev-mandel2-func.js
83 -----------------
102 - ``./build/dukluv`` on Linux
104 - ``.\build\Debug\dukluv.exe`` on Windows
112 # Manually: see "dukluv duk_debug_proxy.js --help" for help
118 $ ../../duk --debugger test-dev-mandel2-func.js
131 …{"notify":"_TargetConnected","args":["1 10499 v1.4.0-140-gc9a6c7c duk command built from Duktape r…
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.8.0/debugger/
DREADME.rst9 target supporting the example TCP transport (``examples/debug-trans-socket``)
40 $ make -f Makefile.dukdebug
54 $ ./duk --debugger mandel.js
58 $ ../../duk --debugger test-dev-mandel2-func.js
83 -----------------
102 - ``./build/dukluv`` on Linux
104 - ``.\build\Debug\dukluv.exe`` on Windows
112 # Manually: see "dukluv duk_debug_proxy.js --help" for help
118 $ ../../duk --debugger test-dev-mandel2-func.js
131 …{"notify":"_TargetConnected","args":["1 10499 v1.4.0-140-gc9a6c7c duk command built from Duktape r…
[all …]
/civetweb-2.7.6/src/third_party/
Dlsqlite3.c3 * Copyright (C) 2002-2016 Tiago Dionizio, Doug Currie *
7 * Library : lsqlite3 - an SQLite 3 database binding for Lua 5 *
199 sdb_vm *svm = (sdb_vm*)lua_newuserdata(L, sizeof(sdb_vm)); /* db sql svm_ud -- */ in newvm()
202 lua_setmetatable(L, -2); /* set metatable */ in newvm()
204 svm->db = db; in newvm()
205 svm->columns = 0; in newvm()
206 svm->has_values = 0; in newvm()
207 svm->vm = NULL; in newvm()
208 svm->temp = 0; in newvm()
210 /* add an entry on the database table: svm -> db to keep db live while svm is live */ in newvm()
[all …]
Dsqlite3.c17 ** language. The code for the "sqlite3" command-line shell is also in a
38 ** This file implements routines used to report what compile-time options
46 ** autoconf-based build
59 ** An array of names of all compile-time options. This array should
60 ** be sorted A-Z.
63 ** only a handful of compile-time options, so most times this array is usually
99 "COMPILER=clang-" CTIMEOPT_VAL(__clang_major__) "."
103 "COMPILER=msvc-" CTIMEOPT_VAL(_MSC_VER),
105 "COMPILER=gcc-" __VERSION__,
800 ** NO_TEST - The branches on this line are not
[all …]