Mercurial > pidgin.yaz
view libpurple/plugins/ssl/Makefile.am @ 26150:f95aa2b14bec
propagate from branch 'im.pidgin.pidgin' (head 96db74f0ccbe2a283893e33f0f7bff5a827f48d9)
to branch 'im.pidgin.pidgin.vv' (head 55aa623e09a7429df54b4e068dcba4c67c5fe779)
author | Mike Ruprecht <maiku@soc.pidgin.im> |
---|---|
date | Fri, 30 Jan 2009 08:58:07 +0000 |
parents | bcad7dc4b453 |
children | e33a91b8b8f6 |
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) \ $(FARSIGHT_CFLAGS) \ $(GSTREAMER_CFLAGS) \ $(LIBXML_CFLAGS) \ $(PLUGIN_CFLAGS) ssl_gnutls_la_CFLAGS = $(AM_CPPFLAGS) $(GNUTLS_CFLAGS) ssl_nss_la_CFLAGS = $(AM_CPPFLAGS) $(NSS_CFLAGS)