doc/Makefile.am

Mon, 18 Jan 2016 00:18:07 -0600

author
Mike Ruprecht <cmaiku@gmail.com>
date
Mon, 18 Jan 2016 00:18:07 -0600
changeset 37549
1e58ac9ee097
parent 37110
4309235d2a46
permissions
-rw-r--r--

Don't have proxy code call callbacks if connect data disposed

The raw socket implementation wouldn't call callbacks after the
connect data was disposed. Replicate this behavior with the Gio
implementation.

The GCancellable is only cancelled when disposing the connect
data, so if the return from the async function is that it was
cancelled, it's safe to assume that the connect data has been
disposed.

35389
884a5385bb2c Added doc/reference directory with the documentation .xml files
Ankit Vani <a@nevitus.org>
parents: 34957
diff changeset
1 if ENABLE_GTK_DOC
884a5385bb2c Added doc/reference directory with the documentation .xml files
Ankit Vani <a@nevitus.org>
parents: 34957
diff changeset
2 SUBDIRS = reference
884a5385bb2c Added doc/reference directory with the documentation .xml files
Ankit Vani <a@nevitus.org>
parents: 34957
diff changeset
3 endif
884a5385bb2c Added doc/reference directory with the documentation .xml files
Ankit Vani <a@nevitus.org>
parents: 34957
diff changeset
4
25363
8b9199babad7 Only install man pages if the respective binary is being installed, fixes a
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 18895
diff changeset
5 man_MANS =
8b9199babad7 Only install man pages if the respective binary is being installed, fixes a
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 18895
diff changeset
6
8b9199babad7 Only install man pages if the respective binary is being installed, fixes a
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 18895
diff changeset
7 if ENABLE_GTK
8b9199babad7 Only install man pages if the respective binary is being installed, fixes a
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 18895
diff changeset
8 man_MANS += pidgin.1
8b9199babad7 Only install man pages if the respective binary is being installed, fixes a
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 18895
diff changeset
9 endif
8b9199babad7 Only install man pages if the respective binary is being installed, fixes a
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 18895
diff changeset
10
8b9199babad7 Only install man pages if the respective binary is being installed, fixes a
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 18895
diff changeset
11 if ENABLE_GNT
8b9199babad7 Only install man pages if the respective binary is being installed, fixes a
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 18895
diff changeset
12 man_MANS += finch.1
8b9199babad7 Only install man pages if the respective binary is being installed, fixes a
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 18895
diff changeset
13 endif
6600
be881a7963d7 [gaim-migrate @ 7124]
Christian Hammond <chipx86@chipx86.com>
parents: 6218
diff changeset
14
6164
5cad4f6b7d8e [gaim-migrate @ 6645]
Christian Hammond <chipx86@chipx86.com>
parents: 2287
diff changeset
15 EXTRA_DIST = \
15976
dbb3ea0b1f7c Minor 'make dist' fix and check for installed versions of pidgin, not gaim
Mark Doliner <markdoliner@pidgin.im>
parents: 15909
diff changeset
16 funniest_home_convos.txt \
15909
0ee1e930d385 Rename/update finch man page
Richard Nelson <wabz@pidgin.im>
parents: 15632
diff changeset
17 finch.1.in \
12390
cc31536afbbd [gaim-migrate @ 14697]
Etan Reisner <deryni@pidgin.im>
parents: 12291
diff changeset
18 gtkrc-2.0 \
15632
f4d9ac563784 Do the rename in the man page, and make a few updates. The man page still
Richard Laager <rlaager@pidgin.im>
parents: 14647
diff changeset
19 pidgin.1.in \
35389
884a5385bb2c Added doc/reference directory with the documentation .xml files
Ankit Vani <a@nevitus.org>
parents: 34957
diff changeset
20 the_penguin.txt

mercurial