Mercurial > pidgin
annotate plugins/ssl/Makefile.am @ 7032:0ffd540660df
[gaim-migrate @ 7595]
-Made AIM over oscar show the away message in the second line of the big
blist. For the record, I'm against this because I think it's really ugly.
What are yous guys opinions?
-Changed the last g_show_info_text() in oscar.c to gaim_notify_formatted()
-Made oscar gaim_popup() use gaim_notify_formatted() instead
of serv_got_popup()
-Removed serv_got_popup(), des_popup(), and url_clicked_cb()
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Mon, 29 Sep 2003 22:34:32 +0000 |
| parents | aa619031193b |
| children | c889aee7bd95 |
| 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)\" \ | |
| 25 -DVERSION=\"$(VERSION)\" \ | |
| 26 -I$(top_srcdir)/src \ | |
| 27 $(DEBUG_CFLAGS) \ | |
| 28 $(GTK_CFLAGS) \ | |
| 29 $(PLUGIN_CFLAGS) \ | |
| 30 $(NSS_CFLAGS) \ | |
| 31 $(GNUTLS_CFLAGS) |
