Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongoose
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
esp
mongoose
Commits
911115cc
Commit
911115cc
authored
Oct 14, 2014
by
Sergey Lyubka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added -pthread to CFLAGS for linux
parent
2f3ddecc
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
18 additions
and
19 deletions
+18
-19
Makefile
examples/big_upload/Makefile
+1
-1
Makefile
examples/cookie_authentication/Makefile
+1
-1
Makefile
examples/digest_authentication/Makefile
+1
-1
Makefile
examples/file_upload/Makefile
+1
-1
Makefile
examples/form_submit/Makefile
+1
-1
Makefile
examples/hello_world/Makefile
+1
-1
Makefile
examples/http_client/Makefile
+2
-2
Makefile
examples/mjpg_streamer/Makefile
+1
-1
Makefile
examples/multi_threaded_server/Makefile
+1
-1
Makefile
examples/proxy_server/Makefile
+1
-1
Makefile
examples/restful_api/Makefile
+1
-1
Makefile
examples/send_file/Makefile
+1
-1
Makefile
examples/web_server/Makefile
+1
-1
Makefile
examples/websocket_chat/Makefile
+1
-1
Makefile
examples/websocket_echo_server/Makefile
+1
-1
Makefile
examples/websocket_ssl_proxy/Makefile
+2
-3
No files found.
examples/big_upload/Makefile
View file @
911115cc
...
...
@@ -2,7 +2,7 @@
# All rights reserved
PROG
=
big_upload
CFLAGS
=
-W
-Wall
-I
../..
-g
-O0
$(CFLAGS_EXTRA)
CFLAGS
=
-W
-Wall
-
pthread
-
I
../..
-g
-O0
$(CFLAGS_EXTRA)
SOURCES
=
$(PROG)
.c ../../mongoose.c
$(PROG)
:
$(SOURCES)
...
...
examples/cookie_authentication/Makefile
View file @
911115cc
...
...
@@ -2,7 +2,7 @@
# All rights reserved
PROG
=
cookie_auth
CFLAGS
=
-W
-Wall
-I
../..
-g
-O0
$(CFLAGS_EXTRA)
CFLAGS
=
-W
-Wall
-I
../..
-
pthread
-
g
-O0
$(CFLAGS_EXTRA)
SOURCES
=
$(PROG)
.c ../../mongoose.c
$(PROG)
:
$(SOURCES)
...
...
examples/digest_authentication/Makefile
View file @
911115cc
...
...
@@ -2,7 +2,7 @@
# All rights reserved
PROG
=
digest_auth
CFLAGS
=
-W
-Wall
-I
../..
-g
-O0
$(CFLAGS_EXTRA)
CFLAGS
=
-W
-Wall
-I
../..
-
pthread
-
g
-O0
$(CFLAGS_EXTRA)
SOURCES
=
$(PROG)
.c ../../mongoose.c
$(PROG)
:
$(SOURCES)
...
...
examples/file_upload/Makefile
View file @
911115cc
...
...
@@ -2,7 +2,7 @@
# All rights reserved
PROG
=
file_upload
CFLAGS
=
-W
-Wall
-I
../..
$(CFLAGS_EXTRA)
CFLAGS
=
-W
-Wall
-I
../..
-pthread
-g
-O0
$(CFLAGS_EXTRA)
SOURCES
=
$(PROG)
.c ../../mongoose.c
all
:
$(PROG)
...
...
examples/form_submit/Makefile
View file @
911115cc
...
...
@@ -2,7 +2,7 @@
# All rights reserved
PROG
=
form_submit
CFLAGS
=
-W
-Wall
-I
../..
-g
-O0
$(CFLAGS_EXTRA)
CFLAGS
=
-W
-Wall
-I
../..
-
pthread
-
g
-O0
$(CFLAGS_EXTRA)
SOURCES
=
$(PROG)
.c ../../mongoose.c
$(PROG)
:
$(SOURCES)
...
...
examples/hello_world/Makefile
View file @
911115cc
...
...
@@ -2,7 +2,7 @@
# All rights reserved
PROG
=
hello_world
CFLAGS
=
-W
-Wall
-I
../..
$(CFLAGS_EXTRA)
CFLAGS
=
-W
-Wall
-I
../..
-pthread
-g
-O0
$(CFLAGS_EXTRA)
SOURCES
=
$(PROG)
.c ../../mongoose.c
all
:
$(PROG)
...
...
examples/http_client/Makefile
View file @
911115cc
# Copyright (c) 2014 Cesanta Software
# All rights reserved
CFLAGS
=
-W
-Wall
-I
../..
-g
-O0
$(CFLAGS_EXTRA)
SOURCES
=
http_client.c ../../mongoose.c
PROG
=
http_client
CFLAGS
=
-W
-Wall
-I
../..
-pthread
-g
-O0
$(CFLAGS_EXTRA)
SOURCES
=
$(PROG)
.c ../../mongoose.c
unix
:
$(SOURCES)
$(CC)
-o
$(PROG)
$(SOURCES)
$(CFLAGS)
...
...
examples/mjpg_streamer/Makefile
View file @
911115cc
...
...
@@ -2,7 +2,7 @@
# All rights reserved
PROG
=
mjpg_streamer
CFLAGS
=
-W
-Wall
-I
../..
-g
-O0
$(CFLAGS_EXTRA)
CFLAGS
=
-W
-Wall
-I
../..
-
pthread
-
g
-O0
$(CFLAGS_EXTRA)
SOURCES
=
$(PROG)
.c ../../mongoose.c
$(PROG)
:
$(SOURCES)
...
...
examples/multi_threaded_server/Makefile
View file @
911115cc
...
...
@@ -2,7 +2,7 @@
# All rights reserved
PROG
=
multi_threaded_server
CFLAGS
=
-W
-Wall
-I
../..
-g
-O0
$(CFLAGS_EXTRA)
CFLAGS
=
-W
-Wall
-I
../..
-
pthread
-
g
-O0
$(CFLAGS_EXTRA)
SOURCES
=
$(PROG)
.c ../../mongoose.c
$(PROG)
:
$(SOURCES)
...
...
examples/proxy_server/Makefile
View file @
911115cc
...
...
@@ -3,7 +3,7 @@
PROG
=
proxy_server
FLAGS
=
-I
../..
-I
../../../net_skeleton
-DNS_ENABLE_SSL
CFLAGS
=
-W
-Wall
-g
-O0
-lssl
$(FLAGS)
$(CFLAGS_EXTRA)
CFLAGS
=
-W
-Wall
-g
-O0
-
pthread
-
lssl
$(FLAGS)
$(CFLAGS_EXTRA)
SOURCES
=
$(PROG)
.c ../../mongoose.c
unix
:
$(SOURCES)
...
...
examples/restful_api/Makefile
View file @
911115cc
...
...
@@ -2,7 +2,7 @@
# All rights reserved
PROG
=
restful_api
CFLAGS
=
-W
-Wall
-I
../..
-g
-O0
$(CFLAGS_EXTRA)
CFLAGS
=
-W
-Wall
-I
../..
-
pthread
-
g
-O0
$(CFLAGS_EXTRA)
SOURCES
=
$(PROG)
.c ../../mongoose.c
$(PROG)
:
$(SOURCES)
...
...
examples/send_file/Makefile
View file @
911115cc
...
...
@@ -2,7 +2,7 @@
# All rights reserved
PROG
=
send_file
CFLAGS
=
-W
-Wall
-I
../..
$(CFLAGS_EXTRA)
CFLAGS
=
-W
-Wall
-I
../..
-pthread
-g
-O0
$(CFLAGS_EXTRA)
SOURCES
=
$(PROG)
.c ../../mongoose.c
all
:
$(PROG)
...
...
examples/web_server/Makefile
View file @
911115cc
...
...
@@ -2,7 +2,7 @@
# All rights reserved
PROG
=
web_server
CFLAGS
=
-W
-Wall
-I
../..
-g
-O0
$(CFLAGS_EXTRA)
CFLAGS
=
-W
-Wall
-I
../..
-
pthread
-
g
-O0
$(CFLAGS_EXTRA)
SOURCES
=
$(PROG)
.c ../../mongoose.c
$(PROG)
:
$(SOURCES)
...
...
examples/websocket_chat/Makefile
View file @
911115cc
...
...
@@ -2,7 +2,7 @@
# All rights reserved
PROG
=
websocket_chat
CFLAGS
=
-W
-Wall
-I
../..
-g
-O0
$(CFLAGS_EXTRA)
CFLAGS
=
-W
-Wall
-I
../..
-
pthread
-
g
-O0
$(CFLAGS_EXTRA)
SOURCES
=
$(PROG)
.c ../../mongoose.c
$(PROG)
:
$(SOURCES)
...
...
examples/websocket_echo_server/Makefile
View file @
911115cc
...
...
@@ -2,7 +2,7 @@
# All rights reserved
PROG
=
websocket_echo_server
CFLAGS
=
-W
-Wall
-I
../..
-g
-O0
$(CFLAGS_EXTRA)
CFLAGS
=
-W
-Wall
-I
../..
-
pthread
-
g
-O0
$(CFLAGS_EXTRA)
SOURCES
=
$(PROG)
.c ../../mongoose.c
$(PROG)
:
$(SOURCES)
...
...
examples/websocket_ssl_proxy/Makefile
View file @
911115cc
# Copyright (c) 2014 Cesanta Software
# All rights reserved
CFLAGS
=
-W
-Wall
-I
../..
-I
.
-g
-O0
$(CFLAGS_EXTRA)
SOURCES
=
ws_ssl.c ../../mongoose.c net_skeleton.c ssl_wrapper.c
PROG
=
ws_ssl
CFLAGS
=
-W
-Wall
-I
../..
-I
.
-pthread
-g
-O0
$(CFLAGS_EXTRA)
SOURCES
=
ws_ssl.c ../../mongoose.c net_skeleton.c ssl_wrapper.c
all
:
$(PROG)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment