Permalink
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also .
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
- 17 commits
- 6 files changed
- 0 comments
- 2 contributors
Commits on Aug 16, 2018
Commits on Aug 17, 2018
(Assume the remote server filtered remote ones.)
Commits on Sep 20, 2018
Unified
Split
Showing
with
507 additions
and 8 deletions.
- +13 −0 configure.ac
- +5 −3 extensions/Makefile.in
- +412 −0 extensions/m_filter.c
- +72 −0 extensions/m_invex_regonly.c
- +4 −4 modules/Makefile.in
- +1 −1 src/messages.tab
| @@ -521,6 +521,19 @@ dnl End OpenSSL detection | ||
| dnl Specialized functions and libraries | ||
| dnl =================================== | ||
|
|
||
| AC_ARG_ENABLE(hyperscan, | ||
| AC_HELP_STRING([--disable-hyperscan],[Disable hyperscan support]), | ||
| [hyperscan=$enableval],[hyperscan=yes]) | ||
|
|
||
| if test "$hyperscan" = yes; then | ||
|
|
||
| #CPPFLAGS="$CPPFLAGS $(pkg-config --cflags libhs)" | ||
| IRC_CFLAGS="$IRC_CFLAGS $(pkg-config --cflags libhs)" | ||
| LIBS="$LIBS $(pkg-config --libs libhs)" | ||
| AC_CHECK_HEADER(hs_common.h) | ||
|
|
||
| fi | ||
|
|
||
| AC_ARG_WITH(zlib-path, | ||
| AC_HELP_STRING([--with-zlib-path=DIR],[Path to libz.so for ziplinks support.]), | ||
| [LIBS="$LIBS -L$withval"],) | ||
| @@ -61,6 +61,7 @@ SRCS = \ | ||
| m_adminwall.c \ | ||
| m_dehelper.c \ | ||
| m_extendchans.c \ | ||
| m_filter.c \ | ||
| m_findforwards.c \ | ||
| m_identify.c \ | ||
| m_listenoff.c \ | ||
| @@ -84,7 +85,8 @@ SRCS = \ | ||
| spy_trace_notice.c \ | ||
| example_module.c \ | ||
| hints.c \ | ||
| drain.c | ||
| drain.c \ | ||
| m_invex_regonly.c | ||
|
|
||
| OBJS = ${SRCS:.c=.so} | ||
|
|
||
| @@ -104,7 +106,7 @@ install: all | ||
| .SUFFIXES: .so | ||
|
|
||
| .c.so: | ||
| ${CC} ${PICFLAGS} ${CPPFLAGS} ${CFLAGS} $< -o $@ | ||
| ${CC} ${PICFLAGS} ${CPPFLAGS} ${CFLAGS} $< -o $@ ${IRCDLIBS} | ||
|
|
||
| .PHONY: depend clean distclean | ||
| depend: | ||
| @@ -118,7 +120,7 @@ depend: | ||
| @rm -f .depend.tmp .depend | ||
|
|
||
| clean: | ||
| ${RM} -f *.so *~ | ||
| ${RM} -f *.so *~ | ||
|
|
||
| distclean: clean | ||
| ${RM} -f Makefile | ||
Oops, something went wrong.