Home
last modified time | relevance | path

Searched +full:- +full:- +full:upgrade (Results 1 – 6 of 6) sorted by relevance

/civetweb-2.7.6/
DMakefile3 # License http://opensource.org/licenses/mit-license.php MIT License
10 include resources/Makefile.in-os
19 # http://www.gnu.org/prep/standards/html_node/Directory-Variables.html
32 MKDIR = mkdir -p
33 RMF = rm -f
34 RMRF = rm -rf
61 # to this variable so we can run lua-specific unit tests.
68 CFLAGS += -Wall -Wextra -Wshadow -Wformat-security -Winit-self -Wmissing-prototypes -D$(TARGET_OS)
70 LIBS = -lpthread -lm
73 CFLAGS += -g -DDEBUG
[all …]
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/conan/travis/
Dinstall.sh3 set -ex
5 if [[ "$(uname -s)" == 'Darwin' ]]; then
7 brew outdated pyenv || brew upgrade pyenv
8 brew install pyenv-virtualenv
12 eval "$(pyenv init -)"
/civetweb-2.7.6/test/
Dwebsocket.lua2 --timerID = "interval"
6 f:write(os.date() .. " - " .. text .. "\n")
12 --return pcall(function()
13 -- if (string.upper(mg.request_info.http_headers.Upgrade)~="WEBSOCKET") then error("") end
14 --end)
29 -- Serialize table to string
47 -- table of all active connection
50 -- function to get a client identification string
56 -- Callback to accept or reject a connection
60 return true -- return true to accept the connection
[all …]
/civetweb-2.7.6/src/
Dcivetweb.c1 /* Copyright (c) 2013-2018 the Civetweb developers
2 * Copyright (c) 2004-2013 Sergey Lyubka
33 /* Disable unused macros warnings - not all defines are required
35 #pragma GCC diagnostic ignored "-Wunused-macros"
37 #pragma GCC diagnostic ignored "-Wpadded"
45 #pragma GCC diagnostic ignored "-Wreserved-id-macro"
52 #if !defined(_WIN32_WINNT) /* defined for tdm-gcc so we can use getnameinfo */
70 #define _FILE_OFFSET_BITS 64 /* Use 64-bit file offsets by default */
88 /* Enable reserved-id-macro warning again. */
102 /* non-constant aggregate initializer: issued due to missing C99 support */
[all …]
/civetweb-2.7.6/src/third_party/
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 …]