added memcached module
This commit is contained in:
@ -236,6 +236,10 @@ if ENABLE_MOD_UCI
|
||||
libhawk_la_LIBADD += ../mod/libhawk-uci.la
|
||||
endif
|
||||
|
||||
if ENABLE_MOD_MEMC
|
||||
libhawk_la_LIBADD += ../mod/libhawk-memc.la
|
||||
endif
|
||||
|
||||
else
|
||||
##################################################
|
||||
# DYNAMIC MODULES
|
||||
|
@ -7475,6 +7475,10 @@ int hawk_putsrcoochars (hawk_t* hawk, const hawk_ooch_t* str, hawk_oow_t len)
|
||||
#include "../mod/mod-uci.h"
|
||||
#endif
|
||||
|
||||
#if defined(HAWK_ENABLE_MOD_MEMC)
|
||||
#include "../mod/mod-memc.h"
|
||||
#endif
|
||||
|
||||
/*
|
||||
* if modules are linked statically into the main hawk module,
|
||||
* this table is used to find the entry point of the modules.
|
||||
@ -7503,6 +7507,9 @@ static struct
|
||||
#if defined(HAWK_ENABLE_MOD_UCI)
|
||||
{ HAWK_T("uci"), hawk_mod_uci }
|
||||
#endif
|
||||
#if defined(HAWK_ENABLE_MOD_MEMC)
|
||||
{ HAWK_T("memc"), hawk_mod_memc }
|
||||
#endif
|
||||
};
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user