Mercurial > pidgin.yaz
annotate finch/plugins/Makefile.am @ 17141:03866cefa848
Patch #1054 from resiak.
"Make Ctrl-[Shift-]Tab prefer tabs with higher-valued unseen_states to
those which are nearer but have lower values. This has the effect of
making Ctrl-Tab ignore conversations with activity like status changes
when other tabs have unread messages, and prefer chats where you are
hilighted even more. (By an amazing coincidence, this is exactly what
meta-a does in irssi.)".
This closes #1054.
resiak: Thanks!
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Fri, 18 May 2007 01:03:53 +0000 |
parents | b93b9994dc2f |
children | 36400e6f8954 |
rev | line source |
---|---|
15893
886025ef7daa
Build gntclipboard plugin by default. If we don't want this, at least
Stu Tomlinson <stu@nosnilmot.com>
parents:
15885
diff
changeset
|
1 gntclipboard_la_LDFLAGS = -module -avoid-version |
15818 | 2 gntgf_la_LDFLAGS = -module -avoid-version |
3 gnthistory_la_LDFLAGS = -module -avoid-version | |
4 gntlastlog_la_LDFLAGS = -module -avoid-version | |
5 | |
6 if PLUGINS | |
7 | |
8 plugin_LTLIBRARIES = \ | |
15893
886025ef7daa
Build gntclipboard plugin by default. If we don't want this, at least
Stu Tomlinson <stu@nosnilmot.com>
parents:
15885
diff
changeset
|
9 gntclipboard.la \ |
15818 | 10 gntgf.la \ |
11 gnthistory.la \ | |
12 gntlastlog.la | |
13 | |
15885
c6e563dfaa7a
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <stu@nosnilmot.com>
parents:
15818
diff
changeset
|
14 plugindir = $(libdir)/finch |
15818 | 15 |
15893
886025ef7daa
Build gntclipboard plugin by default. If we don't want this, at least
Stu Tomlinson <stu@nosnilmot.com>
parents:
15885
diff
changeset
|
16 gntclipboard_la_SOURCES = gntclipboard.c |
15818 | 17 gntgf_la_SOURCES = gntgf.c |
18 gnthistory_la_SOURCES = gnthistory.c | |
19 gntlastlog_la_SOURCES = lastlog.c | |
20 | |
16046
42c6d1d81bec
gntclipboard plugin needs X11
Richard Nelson <wabz@pidgin.im>
parents:
15893
diff
changeset
|
21 gntclipboard_la_CFLAGS = $(X11_CFLAGS) |
15818 | 22 gntgf_la_CFLAGS = $(X11_CFLAGS) |
23 | |
16046
42c6d1d81bec
gntclipboard plugin needs X11
Richard Nelson <wabz@pidgin.im>
parents:
15893
diff
changeset
|
24 gntclipboard_la_LIBADD = $(GLIB_LIBS) $(X11_LIBS) |
15818 | 25 gntgf_la_LIBADD = $(GLIB_LIBS) $(X11_LIBS) $(top_builddir)/finch/libgnt/libgnt.la |
26 gnthistory_la_LIBADD = $(GLIB_LIBS) | |
27 gntlastlog_la_LIBADD = $(GLIB_LIBS) | |
28 | |
29 endif # PLUGINS | |
30 | |
31 EXTRA_DIST = | |
32 | |
33 AM_CPPFLAGS = \ | |
34 -DDATADIR=\"$(datadir)\" \ | |
35 -I$(top_builddir)/libpurple \ | |
36 -I$(top_srcdir)/libpurple \ | |
37 -I$(top_srcdir) \ | |
38 -I$(top_srcdir)/finch \ | |
39 -I$(top_srcdir)/finch/libgnt \ | |
40 $(DEBUG_CFLAGS) \ | |
41 $(GLIB_CFLAGS) \ | |
42 $(GNT_CFLAGS) \ | |
43 $(PLUGIN_CFLAGS) | |
44 | |
45 # | |
46 # This part allows people to build their own plugins in here. | |
47 # Yes, it's a mess. | |
48 # | |
49 SUFFIXES = .c .so | |
50 .c.so: | |
51 $(LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I$(top_srcdir) $(AM_CPPFLAGS) $(CFLAGS) -c $< -o tmp$@.lo $(PLUGIN_CFLAGS) | |
52 $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o libtmp$@.la -rpath $(plugindir) tmp$@.lo $(LIBS) $(LDFLAGS) -module -avoid-version $(PLUGIN_LIBS) | |
53 @rm -f tmp$@.lo tmp$@.o libtmp$@.la | |
54 @cp .libs/libtmp$@.so* $@ | |
55 @rm -f .libs/libtmp$@.* |