summary refs log tree commit diff stats
path: root/src/common/identd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/identd.c')
0 files changed, 0 insertions, 0 deletions
+0200 Compatibility for Automake 1.12.4+' href='/git-repos/torxchat.git/commit/src/common/Makefile.am?h=feature/fork-branding&id=84c536e4ea7a5f517822c9928222f066f2faf3fe'>84c536e4 ^
4a6ceffb ^






1a75c8e1 ^


4a6ceffb ^

















2c2419f2 ^
4a6ceffb ^






1a75c8e1 ^
4a6ceffb ^






6d356a5e ^
4a6ceffb ^



1a75c8e1 ^



6d356a5e ^
4a6ceffb ^
b8927e9d ^


4a6ceffb ^
b8927e9d ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66

                                                         
                                     
 
                              






                    


                          

















                        
                    






                       
              






              
                                                         



                                                        



                                                                            
                                              
 


                                   
                                                               

                                        
## Process this file with automake to produce Makefile.in

noinst_LIBRARIES = libhexchatcommon.a

AM_CPPFLAGS = $(COMMON_CFLAGS)

EXTRA_DIST = \
	cfgfiles.h \
	chanopt.h \
	ctcp.h \
	dcc.h \
	fe.h \
	hexchat.h \
	hexchatc.h \
	hexchat-plugin.h \
	history.h \
	identd.c \
	ignore.h \
	inbound.h \
	inet.h \
	make-te.c \
	modes.h \
	msproxy.h \
	network.h \
	notify.h \
	outbound.h \
	plugin.h \
	plugin-timer.h \
	proto-irc.h \
	server.h \
	servlist.h \
	ssl.h \
	ssl.c	\
	strlutil.c \
	text.h \
	textenums.h \
	textevents.h \
	textevents.in \
	tree.h \
	url.h \
	userlist.h \
	util.h

if USE_OPENSSL
ssl_c = ssl.c
endif

if USE_DBUS
dbusdir = dbus
libhexchatcommon_a_LIBADD =				\
	$(top_builddir)/src/common/dbus/dbus-*.$(OBJEXT)
endif
SUBDIRS = $(dbusdir) .

libhexchatcommon_a_SOURCES = cfgfiles.c chanopt.c ctcp.c dcc.c hexchat.c \
	history.c ignore.c inbound.c modes.c msproxy.c network.c notify.c \
	outbound.c plugin.c plugin-timer.c proto-irc.c server.c servlist.c \
	$(ssl_c) strlutil.c text.c tree.c url.c userlist.c util.c
libhexchatcommon_a_CFLAGS = $(LIBPROXY_CFLAGS)

textenums.h: textevents.h

textevents.h: textevents.in make-te
	./make-te < textevents.in > textevents.h 2> textenums.h

BUILT_SOURCES = textenums.h textevents.h