* providers/imap/Makefile.am (libcamelimap_la_LDFLAGS): Use -avoid-version instead of -version-info 0:0:0, and specify -module. (From Max Horn <max@quendi.de>). * providers/local/Makefile.am (libcamellocal_la_LDFLAGS): Likewise. * providers/nntp/Makefile.am (libcamelnntp_la_LDFLAGS): Likewise. * providers/sendmail/Makefile.am (libcamelsendmail_la_LDFLAGS): Likewise. * providers/smtp/Makefile.am (libcamelsmtp_la_LDFLAGS): Likewise. * providers/pop3/Makefile.am (libcamelpop3_la_LDFLAGS): Likewise. Also remove $(KRB4_LDFLAGS) since KPOP is gone. (INCLUDES): and $(KRB4_CFLAGS) svn path=/trunk/; revision=16305
30 lines
742 B
Makefile
30 lines
742 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libcamelsendmailincludedir = $(includedir)/camel
|
|
|
|
camel_provider_LTLIBRARIES = libcamelsendmail.la
|
|
camel_provider_DATA = libcamelsendmail.urls
|
|
|
|
INCLUDES = \
|
|
-I.. \
|
|
-I$(srcdir)/.. \
|
|
-I$(srcdir)/../../.. \
|
|
-I$(includedir) \
|
|
-I$(top_srcdir)/intl \
|
|
-I$(top_srcdir)/camel \
|
|
$(CAMEL_CFLAGS) \
|
|
$(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 = -avoid-version -module
|
|
|
|
EXTRA_DIST = libcamelsendmail.urls
|