ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/Makefile.am
Revision: 9292
Committed: Sun Feb 23 10:37:06 2020 UTC (6 years, 4 months ago) by michael
File size: 2681 byte(s)
Log Message:
- Extban $n of type 'acting' has been implemented. This extban prevents matching users from changing their
  nick while in the channel. Users with voice or above are not affected.
- Channel mode +N has been changed so channel members with +v can change nick names, too

File Contents

# Content
1 AUTOMAKE_OPTIONS = foreign
2
3 bin_PROGRAMS = ircd
4
5 AM_YFLAGS = -d
6
7 AM_CPPFLAGS = $(LTDLINCL) -I$(top_srcdir)/include
8 ircd_LDFLAGS = -export-dynamic
9 ircd_LDADD = $(LIBLTDL)
10 ircd_DEPENDENCIES = $(LTDLDEPS)
11
12 ircd_SOURCES = auth.c \
13 channel.c \
14 channel_invite.c \
15 channel_mode.c \
16 client.c \
17 client_svstag.c \
18 conf.c \
19 conf_class.c \
20 conf_cluster.c \
21 conf_db.c \
22 conf_gecos.c \
23 conf_pseudo.c \
24 conf_resv.c \
25 conf_service.c \
26 conf_shared.c \
27 conf_parser.y \
28 conf_lexer.l \
29 dbuf.c \
30 event.c \
31 extban.c \
32 extban_account.c \
33 extban_channel.c \
34 extban_fingerprint.c \
35 extban_gecos.c \
36 extban_join.c \
37 extban_mute.c \
38 extban_nick.c \
39 extban_operclass.c \
40 extban_server.c \
41 extban_usermode.c \
42 fdlist.c \
43 getopt.c \
44 hash.c \
45 hostmask.c \
46 id.c \
47 ipcache.c \
48 irc_string.c \
49 ircd.c \
50 ircd_signal.c \
51 isupport.c \
52 list.c \
53 listener.c \
54 log.c \
55 match.c \
56 memory.c \
57 misc.c \
58 modules.c \
59 motd.c \
60 numeric.c \
61 packet.c \
62 parse.c \
63 patricia.c \
64 s_bsd_epoll.c \
65 s_bsd_poll.c \
66 s_bsd_devpoll.c \
67 s_bsd_kqueue.c \
68 tls_gnutls.c \
69 tls_none.c \
70 tls_openssl.c \
71 tls_wolfssl.c \
72 res.c \
73 reslib.c \
74 restart.c \
75 rng_mt.c \
76 s_bsd.c \
77 send.c \
78 server.c \
79 server_capab.c \
80 user.c \
81 watch.c \
82 whowas.c

Properties

Name Value
svn:eol-style native