Mon, 18 Sep 2006 04:22:44 +0000
[gaim-migrate @ 17303]
Remove a bunch of functions that are commented out because they can't work
currently, they'll come back if I can get the actual Gtk2 perl stuff to not
crash, but they were just taking up space and getting in my way (since they
are removed already in my other tree).
| 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@', |
| 11 | 'INC' => '-I. -I@srcdir@ -I@top_srcdir@ -I@top_srcdir@/libgaim -I@top_srcdir@/gtk @GTK_CFLAGS@', | |
| 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 | ); |