Differences From
Artifact [40c8adaeb1]:
24 24 mkdir $@
25 25 # generate a shim static library so mongoose cooperates
26 26 # with the build apparatus. note that parsav is designed
27 27 # to be fronted by a real web server like nginx if SSL
28 28 # is to be used, so we don't turn on SSL in mongoose
29 29 lib/mongoose/libmongoose.a: lib/mongoose lib/mongoose/mongoose.c lib/mongoose/mongoose.h
30 30 $(CC) -c $</mongoose.c -o lib/mongoose/mongoose.o \
31 - -DMG_ENABLE_THREADS \
32 - -DMG_ENABLE_IPV6 \
33 - -DMG_ENABLE_HTTP_WEBDAV \
31 + -DMG_ENABLE_THREADS=1 \
32 + -DMG_ENABLE_IPV6=1 \
33 + -DMG_ENABLE_HTTP_WEBDAV=1 \
34 34 -DMG_ENABLE_HTTP_WEBSOCKET=0
35 35 ar rcs $@ lib/mongoose/*.o
36 36 ranlib $@
37 37
38 38 lib/json-c/Makefile: lib/json-c lib/json-c/CMakeLists.txt
39 39 cd lib/json-c && cmake .
40 40 lib/json-c/libjson-c.a: lib/json-c/Makefile