mirror of
https://github.com/samba-team/samba.git
synced 2025-02-22 05:57:43 +03:00
is using tls by looking at the first byte on the connection. This allows both https and http services to be on the same port (This used to be commit 6369dfb6585ce4d4e3028c557395f2d73c290c92)
42 lines
809 B
Makefile
42 lines
809 B
Makefile
# web server subsystem
|
|
|
|
#######################
|
|
# Start SUBSYSTEM EJS
|
|
[SUBSYSTEM::EJS]
|
|
ADD_OBJ_FILES = \
|
|
web_server/ejs/ejs.o \
|
|
web_server/ejs/ejsLex.o \
|
|
web_server/ejs/ejsParser.o \
|
|
web_server/ejs/ejsProcs.o \
|
|
web_server/ejs/miniMpr.o \
|
|
web_server/ejs/var.o
|
|
NOPROTO=YES
|
|
# End SUBSYSTEM EJS
|
|
#######################
|
|
|
|
#######################
|
|
# Start SUBSYSTEM ESP
|
|
[SUBSYSTEM::ESP]
|
|
ADD_OBJ_FILES = \
|
|
web_server/esp/esp.o \
|
|
web_server/esp/espProcs.o
|
|
REQUIRED_SUBSYSTEMS = EJS
|
|
NOPROTO=YES
|
|
# End SUBSYSTEM ESP
|
|
#######################
|
|
|
|
|
|
|
|
#######################
|
|
# Start SUBSYSTEM WEB
|
|
[SUBSYSTEM::WEB]
|
|
INIT_OBJ_FILES = \
|
|
web_server/web_server.o
|
|
ADD_OBJ_FILES = \
|
|
web_server/http.o \
|
|
web_server/calls.o \
|
|
web_server/tls.o
|
|
REQUIRED_SUBSYSTEMS = ESP
|
|
# End SUBSYSTEM WEB
|
|
#######################
|