comparison pidgin/plugins/Makefile.am @ 17812:f2869d5facfe

Fix #318 which asked for the buddynote plugins notes to be shown in the tooltip. This was the easiest way I could think of to do it without making the buddynote plugin itself a gtk plugin. Eventually I think I'll see about moving the drawing-tooltip function to be a core plugin and this can get merged into buddynote itself. (But I don't think that can't happen until 3.0.0.)
author Etan Reisner <pidgin@unreliablesource.net>
date Sun, 10 Jun 2007 07:25:09 +0000
parents 0dcd915899ae
children b2578b2d4bc4
comparison
equal deleted inserted replaced
17811:9a96d8711303 17812:f2869d5facfe
28 28
29 convcolors_la_LDFLAGS = -module -avoid-version 29 convcolors_la_LDFLAGS = -module -avoid-version
30 contact_priority_la_LDFLAGS = -module -avoid-version 30 contact_priority_la_LDFLAGS = -module -avoid-version
31 extplacement_la_LDFLAGS = -module -avoid-version 31 extplacement_la_LDFLAGS = -module -avoid-version
32 gtk_signals_test_la_LDFLAGS = -module -avoid-version 32 gtk_signals_test_la_LDFLAGS = -module -avoid-version
33 gtkbuddynote_la_LDFLAGS = -module -avoid-version
33 history_la_LDFLAGS = -module -avoid-version 34 history_la_LDFLAGS = -module -avoid-version
34 iconaway_la_LDFLAGS = -module -avoid-version 35 iconaway_la_LDFLAGS = -module -avoid-version
35 markerline_la_LDFLAGS = -module -avoid-version 36 markerline_la_LDFLAGS = -module -avoid-version
36 notify_la_LDFLAGS = -module -avoid-version 37 notify_la_LDFLAGS = -module -avoid-version
37 pidginrc_la_LDFLAGS = -module -avoid-version 38 pidginrc_la_LDFLAGS = -module -avoid-version
44 if PLUGINS 45 if PLUGINS
45 46
46 plugin_LTLIBRARIES = \ 47 plugin_LTLIBRARIES = \
47 convcolors.la \ 48 convcolors.la \
48 extplacement.la \ 49 extplacement.la \
50 gtkbuddynote.la \
49 history.la \ 51 history.la \
50 iconaway.la \ 52 iconaway.la \
51 markerline.la \ 53 markerline.la \
52 notify.la \ 54 notify.la \
53 pidginrc.la \ 55 pidginrc.la \
63 65
64 convcolors_la_SOURCES = convcolors.c 66 convcolors_la_SOURCES = convcolors.c
65 contact_priority_la_SOURCES = contact_priority.c 67 contact_priority_la_SOURCES = contact_priority.c
66 extplacement_la_SOURCES = extplacement.c 68 extplacement_la_SOURCES = extplacement.c
67 gtk_signals_test_la_SOURCES = gtk-signals-test.c 69 gtk_signals_test_la_SOURCES = gtk-signals-test.c
70 gtkbuddynote_la_SOURCES = gtkbuddynote.c
68 history_la_SOURCES = history.c 71 history_la_SOURCES = history.c
69 iconaway_la_SOURCES = iconaway.c 72 iconaway_la_SOURCES = iconaway.c
70 markerline_la_SOURCES = markerline.c 73 markerline_la_SOURCES = markerline.c
71 notify_la_SOURCES = notify.c 74 notify_la_SOURCES = notify.c
72 pidginrc_la_SOURCES = pidginrc.c 75 pidginrc_la_SOURCES = pidginrc.c
78 81
79 convcolors_la_LIBADD = $(GTK_LIBS) 82 convcolors_la_LIBADD = $(GTK_LIBS)
80 contact_priority_la_LIBADD = $(GTK_LIBS) 83 contact_priority_la_LIBADD = $(GTK_LIBS)
81 extplacement_la_LIBADD = $(GTK_LIBS) 84 extplacement_la_LIBADD = $(GTK_LIBS)
82 gtk_signals_test_la_LIBADD = $(GTK_LIBS) 85 gtk_signals_test_la_LIBADD = $(GTK_LIBS)
86 gtkbuddynote_la_LIBADD = $(GTK_LIBS)
83 history_la_LIBADD = $(GTK_LIBS) 87 history_la_LIBADD = $(GTK_LIBS)
84 iconaway_la_LIBADD = $(GTK_LIBS) 88 iconaway_la_LIBADD = $(GTK_LIBS)
85 markerline_la_LIBADD = $(GTK_LIBS) 89 markerline_la_LIBADD = $(GTK_LIBS)
86 notify_la_LIBADD = $(GTK_LIBS) 90 notify_la_LIBADD = $(GTK_LIBS)
87 pidginrc_la_LIBADD = $(GTK_LIBS) 91 pidginrc_la_LIBADD = $(GTK_LIBS)