2001-04-11 JP Rosevear <jpr@ximian.com> * configure.in: Check if gethostbyname_r take five params * acconfig.h: add GETHOSTBYNAME_R_FIVE_ARGS 2001-04-11 JP Rosevear <jpr@ximian.com> * providers/imap/Makefile.am: user GNOME_INCLUDEDIR since gnome files are included in the top level camel headers and the gtk include dir is now versioned and such * providers/local/Makefile.am: ditto * providers/pop3/Makefile.am: ditto * providers/smtp/Makefile.am: ditto * providers/sendmail/Makefile.am: ditto * camel-service.c: use five arg version of gethostbyname_r if appropriate (camel_get_host_byname): check if msg->herr is non-zero instead of checking if msg->hp is null since we may not always have msg->hp svn path=/trunk/; revision=9239
32 lines
761 B
Makefile
32 lines
761 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libcamelsendmailincludedir = $(includedir)/camel
|
|
|
|
|
|
providerdir = $(pkglibdir)/camel-providers/$(VERSION)
|
|
|
|
provider_LTLIBRARIES = libcamelsendmail.la
|
|
provider_DATA = libcamelsendmail.urls
|
|
|
|
INCLUDES = \
|
|
-I.. \
|
|
-I$(srcdir)/.. \
|
|
-I$(srcdir)/../../.. \
|
|
-I$(includedir) \
|
|
-I$(top_srcdir)/intl \
|
|
-I$(top_srcdir)/camel \
|
|
$(GNOME_INCLUDEDIR) \
|
|
$(GTK_INCLUDEDIR) \
|
|
-DG_LOG_DOMAIN=\"camel-sendmail-provider\"
|
|
|
|
libcamelsendmail_la_SOURCES = \
|
|
camel-sendmail-provider.c \
|
|
camel-sendmail-transport.c
|
|
|
|
libcamelsendmailinclude_HEADERS = \
|
|
camel-sendmail-transport.h
|
|
|
|
libcamelsendmail_la_LDFLAGS = -version-info 0:0:0
|
|
|
|
EXTRA_DIST = libcamelsendmail.urls
|