ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid-7.3/src/Makefile.am
Revision: 1123
Committed: Sun Feb 6 21:57:50 2011 UTC (15 years, 5 months ago) by michael
File size: 2059 byte(s)
Log Message:
- Got rid of irc_addrinfo.c and irc_getnameinfo.c
- Fixed broken ipv6 detection due to incorrect use of AC_CHECK_TYPES

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     csvlib.c \
17     dbuf.c \
18     dynlink.c \
19     event.c \
20     fdlist.c \
21     fileio.c \
22     getopt.c \
23     hash.c \
24     hook.c \
25     hostmask.c \
26     irc_res.c \
27     irc_reslib.c \
28     irc_string.c \
29     ircd.c \
30     ircd_signal.c \
31     list.c \
32     listener.c \
33     match.c \
34     memory.c \
35     modules.c \
36     motd.c \
37 michael 982 rng_mt.c \
38 michael 912 numeric.c \
39     packet.c \
40     parse.c \
41     s_conf.c \
42     s_bsd_epoll.c \
43     s_bsd_poll.c \
44     s_bsd_sigio.c \
45     s_bsd_devpoll.c \
46     s_bsd_kqueue.c \
47     s_bsd_select.c \
48     restart.c \
49     resv.c \
50     s_auth.c \
51     s_bsd.c \
52     s_gline.c \
53     s_log.c \
54     s_misc.c \
55     s_serv.c \
56     s_user.c \
57     send.c \
58     sprintf_irc.c \
59     version.c \
60     watch.c \
61     whowas.c \
62     ircd_parser.y \
63     ircd_lexer.l
64     if ENABLE_SSL
65     ircd_SOURCES += rsa.c
66 stu 908 endif