Changeset 14654


Ignore:
Timestamp:
06/25/10 03:50:50 (3 years ago)
Author:
BrainSlayer
Message:

some private fun

Location:
src/router/httpd
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/router/httpd/Makefile

    r14652 r14654  
    186186CFLAGS += -DHAVE_FREERADIUS 
    187187endif 
     188ifeq ($(CONFIG_POKER),y) 
     189CFLAGS += -DHAVE_POKER 
     190VISOBJS += poker.o 
     191WEBSOBJS += webspoker.o 
     192endif 
    188193ifeq ($(CONFIG_PICO5),y) 
    189194CFLAGS += -DHAVE_PICO5 
     
    821826        rm -f ../rc/rc 
    822827 
    823 validate.so: validators.o webs.o wepkey.o setupassist.o aoss_save.o $(REGOBJS) 
     828validate.so: validators.o webs.o wepkey.o setupassist.o aoss_save.o $(WEBSOBJS) $(REGOBJS) 
    824829        $(CC) --shared -o $@ $^ $(CFLAGS) -DVALIDSOURCE -DGETREGCODE $(LDFLAGS) 
    825830 
  • src/router/httpd/modules/broadcom.c

    r14548 r14654  
    11771177        {"FreeRadius", "save_radius_user", "", 0, REFRESH, "save_radius_user"}, 
    11781178#endif 
     1179#ifdef HAVE_POKER 
     1180        {"Poker", "add_poker_user", "", 0, REFRESH, "add_poker_user"}, 
     1181        {"Poker", "del_poker_user", "", 0, REFRESH, "del_poker_user"}, 
     1182        {"Poker", "save_radius_user", "", 0, REFRESH, "save_poker_user"}, 
     1183#endif 
    11791184#ifdef HAVE_BONDING 
    11801185        {"Networking", "add_bond", "", 0, REFRESH, "add_bond"}, 
Note: See TracChangeset for help on using the changeset viewer.