Mercurial > pidgin
annotate plugins/ssl/Makefile.am @ 7132:d17a587efeb3
[gaim-migrate @ 7699]
new blist parser code, and some tweaks to the account code to make my next commit possible. the other parser code can get moved over to this model to make things cleaner, but i'm too lazy to do it now.
committer: Tailor Script <tailor@pidgin.im>
| author | Nathan Walp <nwalp@pidgin.im> |
|---|---|
| date | Fri, 03 Oct 2003 21:49:11 +0000 |
| parents | c889aee7bd95 |
| children | 79e33c8ecf16 |
| rev | line source |
|---|---|
| 7016 | 1 plugindir = $(libdir)/gaim |
| 2 | |
| 3 ssl_la_LDFLAGS = -module -avoid-version | |
| 4 ssl_gnutls_la_LDFLAGS = -module -avoid-version | |
| 5 ssl_nss_la_LDFLAGS = -module -avoid-version | |
| 6 | |
| 7 if PLUGINS | |
| 8 | |
| 9 plugin_LTLIBRARIES = \ | |
| 10 ssl.la \ | |
| 11 ssl-gnutls.la \ | |
| 12 ssl-nss.la | |
| 13 | |
| 14 ssl_la_SOURCES = ssl.c | |
| 15 ssl_gnutls_la_SOURCES = ssl-gnutls.c | |
| 16 ssl_nss_la_SOURCES = ssl-nss.c | |
| 17 | |
| 18 ssl_gnutls_la_LIBADD = $(GNUTLS_LIBS) | |
| 19 ssl_nss_la_LIBADD = $(NSS_LIBS) | |
| 20 | |
| 21 endif # PLUGINS | |
| 22 | |
| 23 AM_CPPFLAGS = \ | |
| 24 -DDATADIR=\"$(datadir)\" \ | |
|
7044
c889aee7bd95
[gaim-migrate @ 7607]
Christian Hammond <chipx86@chipx86.com>
parents:
7016
diff
changeset
|
25 -DLIBDIR=\"$(libdir)/gaim/\" \ |
| 7016 | 26 -DVERSION=\"$(VERSION)\" \ |
| 27 -I$(top_srcdir)/src \ | |
| 28 $(DEBUG_CFLAGS) \ | |
| 29 $(GTK_CFLAGS) \ | |
| 30 $(PLUGIN_CFLAGS) \ | |
| 31 $(NSS_CFLAGS) \ | |
| 32 $(GNUTLS_CFLAGS) |
