Ignore:
Timestamp:
06/01/07 11:09:07 (5 years ago)
Author:
wd
Message:

Wow, a fully building ircd mode (so far). Some changes:

  • Updated LOTS of copyright notices.
  • Completed the split of channel and user modes
  • That core 'addon' is completely gone
  • Using hard/soft/post dependencies in what seems to me to be a good way.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ithildin/modules/ircd/protocols/dreamforge.c

    r787 r806  
    66 */ 
    77 
    8 #include <ithildin/stand.h> 
     8#include <ithildin/ithildin.h> 
    99 
    1010#include "ircd.h" 
     
    1313 
    1414MODULE_REGISTER("$Rev$"); 
    15 /* 
    16 @DEPENDENCIES@: ircd 
    17 @DEPENDENCIES@: ircd/addons/core 
    18 @DEPENDENCIES@: ircd/commands/akill        ircd/commands/gnotice 
    19 @DEPENDENCIES@: ircd/commands/services        ircd/commands/sqline 
    20 @DEPENDENCIES@: ircd/commands/svskill        ircd/commands/svsmode 
    21 @DEPENDENCIES@: ircd/commands/svsnick 
    22 */ 
     15const char *mdepends[] = MDEPENDS; 
     16const char *msoftdepends[] = { 
     17    "ircd.command.akill", 
     18    "ircd.command.gnotice",    "ircd.command.services", 
     19    "ircd.command.sqline",     "ircd.command.svskill", 
     20    "ircd.command.svsmode",    "ircd.command.svsnick", 
     21    NULL 
     22}; 
    2323 
    2424uint64_t protocol_flags = PROTOCOL_SFL_SHORTAKILL; 
Note: See TracChangeset for help on using the changeset viewer.