Changeset 315 in Main for trunk/Module


Ignore:
Timestamp:
Oct 14, 2024, 7:01:02 PM (5 weeks ago)
Author:
Nishi
Message:

wip

Location:
trunk/Module
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Module/Makefile

    r314 r315  
    1313
    1414.$(OBJ)$(LIBSUF):
    15         $(CC) $(LDFLAGS) $(SHARED) -o $@ $< ../Common/common.$(STATIC) $(LIBS)
     15        $(CC) $(LDFLAGS) $(SHARED) -o $@ $< $(LIBEXTRA) ../Common/common.$(STATIC) $(LIBS)
    1616
    1717.c.$(OBJ):
  • trunk/Module/mod_cgi.c

    r313 r315  
    2222        return TW_MODULE_STOP;
    2323}
     24
     25#ifdef __NETWARE__
     26int main() { return 0; }
     27#endif
  • trunk/Module/mod_example.c

    r313 r315  
    1313
    1414int MODULE_DECL mod_request(struct tw_tool* tools, struct tw_http_request* req, struct tw_http_response* res) { return TW_MODULE_ERROR(403); }
     15
     16#ifdef __NETWARE__
     17int main() { return 0; }
     18#endif
  • trunk/Module/mod_proxy.c

    r314 r315  
    1414
    1515int MODULE_DECL mod_request(struct tw_tool* tools, struct tw_http_request* req, struct tw_http_response* res) { return TW_MODULE_PASS; }
     16
     17#ifdef __NETWARE__
     18int main() { return 0; }
     19#endif
Note: See TracChangeset for help on using the changeset viewer.