comparison gtk/plugins/Makefile.am @ 14416:eeca8be382a5

[gaim-migrate @ 17124] This is a Gaim::Gtk perl module for use by gaim plugins to get access to the gtkgaim interface functions. It isn't complete because anything dealing with Gtk widgets themselves doesn't work yet (I need to figure out the best way to do that). To use this a perl plugin just needs to include 'use Gaim::Gtk;' either on top of 'use Gaim;' or instead of it. I'm not done with this yet. At the moment you have to 'use Gaim;' or 'use Gaim::Gtk;' which loads all the parts, I'm planning to let you actually say 'use Gaim::Gtk::Debug;' to just get the gtkdebug.h functions. Though 'use Gaim' would work the same way as always. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Sat, 02 Sep 2006 05:31:10 +0000
parents 63ef6342db05
children f3d67de8aaf5
comparison
equal deleted inserted replaced
14415:76d345643ba4 14416:eeca8be382a5
1 DIST_SUBDIRS = cap docklet gevolution gestures musicmessaging ticker 1 DIST_SUBDIRS = cap docklet gestures gevolution musicmessaging perl ticker
2 2
3 if BUILD_GEVOLUTION 3 if BUILD_GEVOLUTION
4 GEVOLUTION_DIR = gevolution 4 GEVOLUTION_DIR = gevolution
5 endif 5 endif
6 6
10 10
11 if ENABLE_CAP 11 if ENABLE_CAP
12 CAP_DIR = cap 12 CAP_DIR = cap
13 endif 13 endif
14 14
15 if USE_PERL
16 PERL_DIR = perl
17 endif
18
15 SUBDIRS = \ 19 SUBDIRS = \
16 $(CAP_DIR) \ 20 $(CAP_DIR) \
17 docklet \ 21 docklet \
22 gestures \
18 $(GEVOLUTION_DIR) \ 23 $(GEVOLUTION_DIR) \
19 gestures \
20 $(MUSICMESSAGING_DIR) \ 24 $(MUSICMESSAGING_DIR) \
25 $(PERL_DIR) \
21 ticker 26 ticker
22 27
23 plugindir = $(libdir)/gaim 28 plugindir = $(libdir)/gaim
24 29
25 extplacement_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) 30 extplacement_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)