view libpurple/gconf/Makefile.am @ 32405:d3d41ba0c3b8

In our forked DNS resolver processes, don't bail out if we get a retryable error while reading from our parent socket. I think EAGAIN and EWOULDBLOCK never happen because this is a non-blocking socket AND because we're using select (seems like we'd be fine using one or the other, and it's not necessary to use both?). I believe this is correct behavior and we should be doing this same thing everywhere we read from sockets. I think we probably don't check for EINTR in many places where we should.
author Mark Doliner <mark@kingant.net>
date Wed, 24 Aug 2011 17:54:39 +0000
parents f2fba90f6ce7
children
line wrap: on
line source

schemadir = @GCONF_SCHEMA_FILE_DIR@

EXTRA_DIST = purple.schemas.in

if INSTALL_I18N
schema_in_files = purple.schemas.in
schema_DATA = $(schema_in_files:.schemas.in=.schemas)
@INTLTOOL_SCHEMAS_RULE@

if GCONF_SCHEMAS_INSTALL
install-data-local:
	GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(schema_DATA) 2>&1 | \
		grep -v "^WARNING: failed to install schema" | grep -v "^Attached schema" 1>&2
else
install-data-local:
endif #GCONF_SCHEMAS_INSTALL

endif #INSTALL_I18N