Mercurial > pidgin
changeset 32356:08151b40c598
merge of '071d7e809e0a4532e6dc367a6f05ea43e1ab0de0'
and 'f7828c5032d27f14c4543fe56ed1b5cecb5517f7'
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Mon, 07 Nov 2011 02:07:59 +0000 |
parents | ec6371d4cae8 (current diff) ab736b16bb26 (diff) |
children | 96f3af93ee98 |
files | |
diffstat | 1 files changed, 5 insertions(+), 19 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/plugins/ssl/Makefile.am Sun Nov 06 20:31:14 2011 +0000 +++ b/libpurple/plugins/ssl/Makefile.am Mon Nov 07 02:07:59 2011 +0000 @@ -9,30 +9,15 @@ 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: - +plugin_LTLIBRARIES = \ + ssl.la if USE_GNUTLS -if USE_NSS -plugin_LTLIBRARIES = \ - ssl.la \ - ssl-gnutls.la \ - ssl-nss.la -else -plugin_LTLIBRARIES = \ - ssl.la \ +plugin_LTLIBRARIES += \ ssl-gnutls.la endif -else if USE_NSS -plugin_LTLIBRARIES = \ - ssl.la \ +plugin_LTLIBRARIES += \ ssl-nss.la -else -plugin_LTLIBRARIES = \ - ssl.la -endif endif ssl_la_SOURCES = ssl.c @@ -56,3 +41,4 @@ ssl_gnutls_la_CFLAGS = $(AM_CPPFLAGS) $(GNUTLS_CFLAGS) ssl_nss_la_CFLAGS = $(AM_CPPFLAGS) $(NSS_CFLAGS) +