ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/Makefile.am
Revision: 1316
Committed: Tue Mar 27 17:05:51 2012 UTC (14 years, 3 months ago) by michael
Original Path: ircd-hybrid-8/src/Makefile.am
File size: 2013 byte(s)
Log Message:
- Removed 'ssl_server_protocol' configuration directive and
  added 'ssl_client_method' and 'ssl_server_method' instead.

  Both of these options can now be changed at runtime.

- src/Makefile.am: swapped order of conf_parser.y and conf_lexer.l
- Update example configuration files

File Contents

# User Rev Content
1 michael 912 AUTOMAKE_OPTIONS = foreign
2    
3     sbin_PROGRAMS = ircd
4    
5     AM_YFLAGS = -d
6    
7 michael 1090 AM_CPPFLAGS = $(LTDLINCL) -I$(top_srcdir)/include
8 michael 977 ircd_LDFLAGS = -export-dynamic
9 michael 1009 ircd_LDADD = $(LIBLTDL)
10 michael 1090 ircd_DEPENDENCIES = $(LTDLDEPS)
11 michael 912
12     ircd_SOURCES = balloc.c \
13     channel.c \
14     channel_mode.c \
15     client.c \
16 michael 1309 conf.c \
17 michael 1316 conf_parser.y \
18 michael 1309 conf_lexer.l \
19 michael 912 csvlib.c \
20     dbuf.c \
21     event.c \
22     fdlist.c \
23     fileio.c \
24     getopt.c \
25     hash.c \
26     hook.c \
27     hostmask.c \
28     irc_res.c \
29     irc_reslib.c \
30     irc_string.c \
31     ircd.c \
32     ircd_signal.c \
33     list.c \
34     listener.c \
35 michael 1309 log.c \
36 michael 912 match.c \
37     memory.c \
38     modules.c \
39     motd.c \
40 michael 982 rng_mt.c \
41 michael 912 numeric.c \
42     packet.c \
43     parse.c \
44     s_bsd_epoll.c \
45     s_bsd_poll.c \
46     s_bsd_sigio.c \
47     s_bsd_devpoll.c \
48     s_bsd_kqueue.c \
49     s_bsd_select.c \
50     restart.c \
51     resv.c \
52 michael 1304 rsa.c \
53 michael 912 s_auth.c \
54     s_bsd.c \
55     s_gline.c \
56     s_misc.c \
57     s_serv.c \
58     s_user.c \
59     send.c \
60     sprintf_irc.c \
61     version.c \
62     watch.c \
63 michael 1309 whowas.c