Wed, 24 Jan 2007 22:10:58 +0000
Fix up perl to build against libpurple/pidgin instead of libgaim/gtk.
| 14478 | 1 | use 5.006; |
| 2 | use ExtUtils::MakeMaker; | |
| 3 | ||
| 4 | WriteMakefile( | |
| 14629 | 5 | 'NAME' => 'Gaim::GtkUI', |
| 6 | 'VERSION_FROM' => '@srcdir@/GtkUI.pm', # finds $VERSION | |
| 14478 | 7 | ($] >= 5.005 ? ## Add these new keywords supported since 5.005 |
| 14629 | 8 | ('ABSTRACT_FROM' => '@srcdir@/GtkUI.pm', # finds $ABSTRACT |
|
14551
7040284cc531
[gaim-migrate @ 17208]
Mark Doliner <markdoliner@pidgin.im>
parents:
14478
diff
changeset
|
9 | 'AUTHOR' => 'Gaim <http://gaim.sourceforge.net/>') : ()), |
| 14478 | 10 | '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
|
11 | 'INC' => '-I. -I@srcdir@ -I@top_srcdir@ -I@top_srcdir@/libpurple -I@top_srcdir@/pidgin @GTK_CFLAGS@', |
| 14478 | 12 | # 'PREREQ_PM' => { 'Gaim' => '@VERSION@'}, |
| 13 | # Do this because the MakeMaker Makefile is dumb, and on clean it moves | |
| 14 | # Makefile to the default setting for MAKEFILE_OLD which is Makefile.old | |
| 15 | # but this breaks running make clean more than once in a row. | |
| 16 | 'MAKEFILE_OLD' => "Makefile", | |
| 17 | 'OBJECT' => '$(O_FILES)', | |
| 18 | 'TYPEMAPS' => ["@top_srcdir@/libgaim/plugins/perl/common/typemap"], | |
| 19 | # 'OPTIMIZE' => '-g', # For debugging. | |
| 20 | ); |