Mercurial > pidgin.yaz
annotate libpurple/gconf/Makefile.am @ 30107:08957bb38e30
jabber: Check at connection time that the user specified a JID with a node.
This was reported by Florian Quze as http://crash-stats.instantbird.com/report/index/6747f742-f02e-4ccf-8214-0ad152100325.
The only way I can see that happening is if jid->node is NULL (i.e. my
account username is something like "darkrain42.org").
author | Paul Aurich <paul@darkrain42.org> |
---|---|
date | Sat, 10 Apr 2010 19:43:04 +0000 |
parents | f7d03842b9c9 |
children | f2fba90f6ce7 |
rev | line source |
---|---|
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
1 schemadir = @GCONF_SCHEMA_FILE_DIR@ |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
2 |
15912
88d626a179a6
Rename our schemas file and update the url handler to point to the
Mark Doliner <mark@kingant.net>
parents:
15374
diff
changeset
|
3 EXTRA_DIST = purple.schemas.in |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
4 |
30021
f7d03842b9c9
Make --disable-nls work again. Fixes #11548.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
16141
diff
changeset
|
5 if GCONF_SCHEMAS_INSTALL |
f7d03842b9c9
Make --disable-nls work again. Fixes #11548.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
16141
diff
changeset
|
6 |
f7d03842b9c9
Make --disable-nls work again. Fixes #11548.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
16141
diff
changeset
|
7 if INSTALL_I18N |
15912
88d626a179a6
Rename our schemas file and update the url handler to point to the
Mark Doliner <mark@kingant.net>
parents:
15374
diff
changeset
|
8 schema_in_files = purple.schemas.in |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
9 schema_DATA = $(schema_in_files:.schemas.in=.schemas) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
10 @INTLTOOL_SCHEMAS_RULE@ |
30021
f7d03842b9c9
Make --disable-nls work again. Fixes #11548.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
16141
diff
changeset
|
11 endif #INSTALL_I18N |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
12 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
13 install-data-local: |
16141
309c1478b457
Suppress useless gconf messages. Hopefully I haven't introduced a bashism here.
Richard Laager <rlaager@wiktel.com>
parents:
15912
diff
changeset
|
14 GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(schema_DATA) 2>&1 | \ |
309c1478b457
Suppress useless gconf messages. Hopefully I haven't introduced a bashism here.
Richard Laager <rlaager@wiktel.com>
parents:
15912
diff
changeset
|
15 grep -v "^WARNING: failed to install schema" | grep -v "^Attached schema" 1>&2 |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
16 else |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
17 install-data-local: |
30021
f7d03842b9c9
Make --disable-nls work again. Fixes #11548.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
16141
diff
changeset
|
18 endif #GCONF_SCHEMAS_INSTALL |