ircd-ratbox is an advanced, stable and fast ircd. It is the primary ircd used on EFNet, combining the stability of an ircd required for a large production network together with a rich set of features, making it also suitable for use on smaller networks. Features include: * optional SSL support to enable encrypted connections between clients and servers, as well as server to server links * support for SSL only channels (channel mode +S) * uses sqlite3 for handling and storing k/x/d lines * support for global CIDR limits * provides adminwall command allowing admins to broadcast messages to each other * support to force nick changes request, testing and feedback by Michiel van Baak setusercontext() idea from form@ via bernd@ tested on armish and ok by sthen@
28 lines
1.6 KiB
Plaintext
28 lines
1.6 KiB
Plaintext
$OpenBSD: patch-Makefile_in,v 1.1.1.1 2009/02/09 09:41:54 simon Exp $
|
|
--- Makefile.in.orig Wed Dec 10 05:12:15 2008
|
|
+++ Makefile.in Wed Feb 4 18:41:07 2009
|
|
@@ -96,7 +96,7 @@ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-
|
|
distclean-recursive maintainer-clean-recursive
|
|
ETAGS = etags
|
|
CTAGS = ctags
|
|
-DIST_SUBDIRS = libratbox libltdl src modules tools doc help bandb ssld \
|
|
+DIST_SUBDIRS = libratbox src modules tools doc help bandb ssld \
|
|
resolver
|
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
distdir = $(PACKAGE)-$(VERSION)
|
|
@@ -262,10 +262,10 @@ servicesdir = @moduledir@/autoload
|
|
AM_CFLAGS = $(WARNFLAGS)
|
|
ircd_SOURCES = main.c
|
|
@MINGW_TRUE@EXTRA_FLAGS = -no-undefined -Wl,--enable-runtime-pseudo-reloc -export-symbols-regex '*'
|
|
-@STATIC_MODULES_FALSE@SUBDIRS = libratbox libltdl src modules tools doc help bandb ssld resolver
|
|
-@STATIC_MODULES_TRUE@SUBDIRS = libratbox libltdl modules src tools doc help bandb ssld resolver
|
|
-@STATIC_MODULES_FALSE@ircd_LDADD = libratbox/src/libratbox.la src/libcore.la $(LIBLTDL)
|
|
-@STATIC_MODULES_TRUE@ircd_LDADD = libratbox/src/libratbox.la modules/libmodules.la src/libcore.la modules/static_modules.o $(LIBLTDL) $(DLOPEN)
|
|
+@STATIC_MODULES_FALSE@SUBDIRS = libratbox src modules tools doc help bandb ssld resolver
|
|
+@STATIC_MODULES_TRUE@SUBDIRS = libratbox modules src tools doc help bandb ssld resolver
|
|
+@STATIC_MODULES_FALSE@ircd_LDADD = libratbox/src/libratbox.la src/libcore.la
|
|
+@STATIC_MODULES_TRUE@ircd_LDADD = libratbox/src/libratbox.la modules/libmodules.la src/libcore.la modules/static_modules.o $(DLOPEN)
|
|
@STATIC_MODULES_FALSE@ircd_LDFLAGS = $(EXTRA_FLAGS) -dlopen self
|
|
all: all-recursive
|
|
|