Mercurial > pidgin.yaz
view libpurple/plugins/ssl/Makefile.am @ 29842:db23767c5b3f
propagate from branch 'im.pidgin.pidgin' (head c2e5c6cc5feb732b79c07ae4dd8fa6bf02e05dd1)
to branch 'im.pidgin.cpw.rekkanoryo.icqxstatus' (head 0dd11b78b526e2c42337a6749d942bb0a93fe958)
author | John Bailey <rekkanoryo@rekkanoryo.org> |
---|---|
date | Tue, 25 Nov 2008 17:02:37 +0000 |
parents | e39cafdbe089 |
children | bcad7dc4b453 |
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)