Mercurial > pidgin
annotate src/protocols/irc/Makefile.am @ 6468:4aa3b1cec52b
[gaim-migrate @ 6977]
Destroying the connection after requesting a password works great when
we just pop up the dialog waiting for a callback, but UIs that actually
wait for the input for the dialog will set the password, try to connect
(which it won't, since it's connected), and then disconnect. Not what we
want.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Thu, 14 Aug 2003 08:19:41 +0000 |
parents | 8f94cce8faa5 |
children | 6b1ecf40f3ba |
rev | line source |
---|---|
6333 | 1 EXTRA_DIST = PROTOCOL Makefile.mingw |
2287
1a1d68e12a86
[gaim-migrate @ 2297]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
2 |
2086 | 3 pkgdir = $(libdir)/gaim |
4 | |
6333 | 5 IRCSOURCES = irc.c parse.c cmds.c msgs.c irc.h |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
6 |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
7 AM_CFLAGS = $(st) |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
8 |
2894
44140dae2865
[gaim-migrate @ 2907]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2618
diff
changeset
|
9 libirc_la_LDFLAGS = -module -avoid-version |
2086 | 10 |
11 if STATIC_IRC | |
12 | |
13 st = -DSTATIC | |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
14 noinst_LIBRARIES = libirc.a |
2086 | 15 pkg_LTLIBRARIES = |
16 | |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
17 libirc_a_SOURCES = $(IRCSOURCES) |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
18 libirc_a_CFLAGS = $(AM_CFLAGS) |
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
2894
diff
changeset
|
19 |
2086 | 20 else |
21 | |
22 st = | |
23 pkg_LTLIBRARIES = libirc.la | |
24 noinst_LIBRARIES = | |
25 | |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
26 libirc_la_SOURCES = $(IRCSOURCES) |
2086 | 27 |
28 endif | |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
29 |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
30 AM_CPPFLAGS = \ |
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
31 -I$(top_srcdir)/src \ |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6360
diff
changeset
|
32 $(GLIB_CFLAGS) \ |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
33 $(DEBUG_CFLAGS) |