Sun, 09 Nov 2008 20:55:10 +0000
Added menu items to buddy list context menu to start voice and video sessions
After discussing the matter with Maiku, we decided to have two choises.
"Audio call" which will show up if audio sessions is possible with a buddy and
the other item is either "Audio/Video" or "Video" depending on if the buddy
supports both at the same time or not
| 14478 | 1 | use 5.006; |
| 2 | use ExtUtils::MakeMaker; | |
|
16529
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15899
diff
changeset
|
3 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence the contents |
|
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15899
diff
changeset
|
4 | # of the Makefile that is written. |
| 14478 | 5 | WriteMakefile( |
|
16529
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15899
diff
changeset
|
6 | 'NAME' => 'Pidgin', |
|
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15899
diff
changeset
|
7 | 'VERSION_FROM' => '@srcdir@/Pidgin.pm', # finds $VERSION |
| 14478 | 8 | ($] >= 5.005 ? ## Add these new keywords supported since 5.005 |
|
16529
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15899
diff
changeset
|
9 | ('ABSTRACT_FROM' => '@srcdir@/Pidgin.pm', # finds $ABSTRACT |
|
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15899
diff
changeset
|
10 | 'AUTHOR' => 'Pidgin <http://pidgin.im/>') : ()), |
| 14478 | 11 | 'DEFINE' => '@DEBUG_CFLAGS@', |
|
15468
eba565166be9
Fix up perl to build against libpurple/pidgin instead of libgaim/gtk.
Ethan Blanton <elb@pidgin.im>
parents:
15435
diff
changeset
|
12 | 'INC' => '-I. -I@srcdir@ -I@top_srcdir@ -I@top_srcdir@/libpurple -I@top_srcdir@/pidgin @GTK_CFLAGS@', |
|
16529
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15899
diff
changeset
|
13 | 'OBJECT' => '$(O_FILES)', # link all the C files too |
| 15472 | 14 | 'TYPEMAPS' => ["@top_srcdir@/libpurple/plugins/perl/common/typemap"], |
| 14478 | 15 | # 'OPTIMIZE' => '-g', # For debugging. |
| 16 | ); |