mirror of
https://github.com/samba-team/samba.git
synced 2025-11-22 16:23:49 +03:00
r7065: Move ejs from web_server to lib so it can be shared with smbscript.
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
805b6c7cf0
commit
b83dc8fbfb
@@ -37,6 +37,7 @@ sub smb_build_main($)
|
||||
"lib/popt/config.mk",
|
||||
"lib/cmdline/config.mk",
|
||||
"lib/socket_wrapper/config.mk",
|
||||
"lib/ejs/config.mk",
|
||||
"param/config.mk",
|
||||
"smb_server/config.mk",
|
||||
"rpc_server/config.mk",
|
||||
|
||||
13
source/lib/ejs/config.mk
Normal file
13
source/lib/ejs/config.mk
Normal file
@@ -0,0 +1,13 @@
|
||||
#######################
|
||||
# Start SUBSYSTEM EJS
|
||||
[SUBSYSTEM::EJS]
|
||||
ADD_OBJ_FILES = \
|
||||
lib/ejs/ejs.o \
|
||||
lib/ejs/ejsLex.o \
|
||||
lib/ejs/ejsParser.o \
|
||||
lib/ejs/ejsProcs.o \
|
||||
lib/ejs/miniMpr.o \
|
||||
lib/ejs/var.o
|
||||
NOPROTO=YES
|
||||
# End SUBSYSTEM EJS
|
||||
#######################
|
||||
@@ -35,7 +35,7 @@
|
||||
*/
|
||||
/********************************** Includes **********************************/
|
||||
|
||||
#include "web_server/ejs/ejsInternal.h"
|
||||
#include "lib/ejs/ejsInternal.h"
|
||||
|
||||
#if BLD_FEATURE_EJS
|
||||
|
||||
@@ -44,8 +44,8 @@
|
||||
#ifndef _h_EJS
|
||||
#define _h_EJS 1
|
||||
|
||||
#include "web_server/ejs/miniMpr.h"
|
||||
#include "web_server/ejs/var.h"
|
||||
#include "lib/ejs/miniMpr.h"
|
||||
#include "lib/ejs/var.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@@ -39,7 +39,7 @@
|
||||
#ifndef _h_EJS_INTERNAL
|
||||
#define _h_EJS_INTERNAL 1
|
||||
|
||||
#include "web_server/ejs/ejs.h"
|
||||
#include "lib/ejs/ejs.h"
|
||||
|
||||
/********************************** Defines ***********************************/
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
*/
|
||||
/********************************** Includes **********************************/
|
||||
|
||||
#include "web_server/ejs/ejsInternal.h"
|
||||
#include "lib/ejs/ejsInternal.h"
|
||||
|
||||
#if BLD_FEATURE_EJS
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
|
||||
/********************************** Includes **********************************/
|
||||
|
||||
#include "web_server/ejs/ejsInternal.h"
|
||||
#include "lib/ejs/ejsInternal.h"
|
||||
|
||||
#if BLD_FEATURE_EJS
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
*/
|
||||
/********************************** Includes **********************************/
|
||||
|
||||
#include "web_server/ejs/ejsInternal.h"
|
||||
#include "lib/ejs/ejsInternal.h"
|
||||
|
||||
#if BLD_FEATURE_EJS
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
* @end
|
||||
*/
|
||||
|
||||
#include "web_server/ejs/miniMpr.h"
|
||||
#include "lib/ejs/miniMpr.h"
|
||||
|
||||
/************************************ Code ************************************/
|
||||
#if !BLD_APPWEB
|
||||
@@ -42,7 +42,7 @@ blah blah;
|
||||
#ifndef _h_MPR_OS_HDRS
|
||||
#define _h_MPR_OS_HDRS 1
|
||||
|
||||
#include "web_server/ejs/config.h"
|
||||
#include "lib/ejs/config.h"
|
||||
|
||||
////////////////////////////////// CPU Families ////////////////////////////////
|
||||
//
|
||||
@@ -44,7 +44,7 @@
|
||||
|
||||
/********************************** Includes **********************************/
|
||||
|
||||
#include "web_server/ejs/var.h"
|
||||
#include "lib/ejs/var.h"
|
||||
|
||||
/*********************************** Locals ***********************************/
|
||||
#if VAR_DEBUG
|
||||
@@ -56,7 +56,7 @@
|
||||
|
||||
/********************************* Includes ***********************************/
|
||||
|
||||
#include "web_server/ejs/miniMpr.h"
|
||||
#include "lib/ejs/miniMpr.h"
|
||||
|
||||
/********************************** Defines ***********************************/
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
*/
|
||||
|
||||
#include "includes.h"
|
||||
#include "web_server/ejs/ejs.h"
|
||||
#include "lib/ejs/ejs.h"
|
||||
|
||||
void http_exception(const char *reason)
|
||||
{
|
||||
|
||||
@@ -1,19 +1,5 @@
|
||||
# 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]
|
||||
|
||||
@@ -36,10 +36,10 @@
|
||||
#ifndef _h_ESP_h
|
||||
#define _h_ESP_h 1
|
||||
|
||||
#include "web_server/ejs/ejs.h"
|
||||
#include "lib/ejs/ejs.h"
|
||||
#include "web_server/esp/espEnv.h"
|
||||
#include "web_server/ejs/var.h"
|
||||
#include "web_server/ejs/miniMpr.h"
|
||||
#include "lib/ejs/var.h"
|
||||
#include "lib/ejs/miniMpr.h"
|
||||
|
||||
/*********************************** Defines **********************************/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user