Mercurial > pidgin
annotate plugins/ssl/Makefile.am @ 7118:bf630f7dfdcd
[gaim-migrate @ 7685]
Here's a commit that I think will make faceprint happy. GaimWindow ->
GaimConvWindow, GaimIm -> GaimConvIm, GaimChat -> GaimConvChat,
GaimBlistChat -> GaimChat, and updated the API functions as well. Plugin
authors are going to hunt me down and murder me. I can feel it..
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Thu, 02 Oct 2003 02:54:07 +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) |
