Skip to content
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 .
base repository: freenode/ircd-seven
base: 000aa02980b812a18652fc2cc21041eb7adc980b
head repository: freenode/ircd-seven
compare: 6ffdaf49400643a922fc9086f7a645ddd07013a6
  • 17 commits
  • 6 files changed
  • 0 comments
  • 2 contributors
Commits on Aug 17, 2018
(Assume the remote server filtered remote ones.)
Showing with 507 additions and 8 deletions.
  1. +13 −0 configure.ac
  2. +5 −3 extensions/Makefile.in
  3. +412 −0 extensions/m_filter.c
  4. +72 −0 extensions/m_invex_regonly.c
  5. +4 −4 modules/Makefile.in
  6. +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

No commit comments for this range