Mercurial > pidgin
annotate src/protocols/silc/Makefile.am @ 13505:7a6763bbf82b
[gaim-migrate @ 15881]
On Mon, 2006-03-13 at 15:10 -0500, Adil wrote:
> Would it be `better' to not print an error message for the event
> (because it is possible to have a chat-window for a disconnected
> account), and popup a menu with disabled entries instead?
This commit implements that. I've also removed some code duplication by having create_chat_menu() look up the prpl_info from the gc.
Also, I think we should grey out the Send File menu item when a particular user doesn't have the ability to receive files, rather than not show it. It's more consistent with what we do elsewhere. I've made that change as well.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Tue, 14 Mar 2006 06:15:31 +0000 |
| parents | 7bef0fa7d4aa |
| children |
| rev | line source |
|---|---|
| 9353 | 1 EXTRA_DIST = README TODO Makefile.mingw |
| 8849 | 2 |
| 3 pkgdir = $(libdir)/gaim | |
| 4 | |
| 12059 | 5 SILCSOURCES = silc.c silcgaim.h buddy.c chat.c ft.c ops.c pk.c util.c wb.c wb.h |
| 8849 | 6 |
| 7 AM_CFLAGS = $(st) | |
| 8 | |
| 10889 | 9 libsilcgaim_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) |
| 8849 | 10 |
| 8857 | 11 if STATIC_SILC |
| 8849 | 12 |
| 9905 | 13 st = -DGAIM_STATIC_PRPL $(SILC_CFLAGS) |
| 9061 | 14 noinst_LIBRARIES = libsilcgaim.a |
| 8849 | 15 pkg_LTLIBRARIES = |
| 16 | |
| 9061 | 17 libsilcgaim_a_SOURCES = $(SILCSOURCES) |
| 18 libsilcgaim_a_CFLAGS = $(AM_CFLAGS) | |
| 19 libsilcgaim_a_LIBADD = $(SILC_LIBS) | |
| 8849 | 20 |
| 21 else | |
| 22 | |
| 9905 | 23 st = $(SILC_CFLAGS) |
| 9061 | 24 pkg_LTLIBRARIES = libsilcgaim.la |
| 8849 | 25 noinst_LIBRARIES = |
| 26 | |
| 9061 | 27 libsilcgaim_la_SOURCES = $(SILCSOURCES) |
| 28 libsilcgaim_la_LIBADD = $(SILC_LIBS) | |
| 8849 | 29 |
| 30 endif | |
| 31 | |
| 32 AM_CPPFLAGS = \ | |
| 33 -I$(top_srcdir)/src \ | |
| 34 $(GLIB_CFLAGS) \ | |
| 35 $(DEBUG_CFLAGS) |
