Mercurial > pidgin
view libpurple/plugins/ssl/Makefile.am @ 31139:365ec0996ca0
merge of '2efa9b7fc41104668975df54e8be8a7171383794'
and '88aea2f701d6cff5efc151d40ef06257da67cf3d'
author | Paul Aurich <paul@darkrain42.org> |
---|---|
date | Mon, 10 Jan 2011 05:20:06 +0000 |
parents | e33a91b8b8f6 |
children | ab736b16bb26 |
line wrap: on
line source
EXTRA_DIST = \ Makefile.mingw plugindir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION) ssl_la_LDFLAGS = -module -avoid-version ssl_gnutls_la_LDFLAGS = -module -avoid-version ssl_nss_la_LDFLAGS = -module -avoid-version if PLUGINS # I'm sorry to report that Automake Conditionals don't support # if USE_GNUTLS && USE_NSS # but only support testing a single variable. Hence: if USE_GNUTLS if USE_NSS plugin_LTLIBRARIES = \ ssl.la \ ssl-gnutls.la \ ssl-nss.la else plugin_LTLIBRARIES = \ ssl.la \ ssl-gnutls.la endif else if USE_NSS plugin_LTLIBRARIES = \ ssl.la \ ssl-nss.la else plugin_LTLIBRARIES = \ ssl.la endif endif ssl_la_SOURCES = ssl.c ssl_gnutls_la_SOURCES = ssl-gnutls.c ssl_nss_la_SOURCES = ssl-nss.c ssl_la_LIBADD = $(GLIB_LIBS) ssl_gnutls_la_LIBADD = $(GLIB_LIBS) $(GNUTLS_LIBS) ssl_nss_la_LIBADD = $(GLIB_LIBS) $(NSS_LIBS) endif # PLUGINS AM_CPPFLAGS = \ -DDATADIR=\"$(datadir)\" \ -DLIBDIR=\"$(libdir)/libpurple\" \ -I$(top_srcdir)/libpurple \ -I$(top_builddir)/libpurple \ $(DEBUG_CFLAGS) \ $(GLIB_CFLAGS) \ $(PLUGIN_CFLAGS) ssl_gnutls_la_CFLAGS = $(AM_CPPFLAGS) $(GNUTLS_CFLAGS) ssl_nss_la_CFLAGS = $(AM_CPPFLAGS) $(NSS_CFLAGS)