Mercurial > pidgin.yaz
view pidgin/plugins/perl/common/Makefile.PL.in @ 15917:40a8cefe4fcd
Get rid of some unused comments
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 25 Mar 2007 06:43:10 +0000 |
parents | e622745f6f42 |
children | ca09f5b57672 |
line wrap: on
line source
use 5.006; use ExtUtils::MakeMaker; WriteMakefile( 'NAME' => 'Purple::GtkUI', 'VERSION_FROM' => '@srcdir@/GtkUI.pm', # finds $VERSION ($] >= 5.005 ? ## Add these new keywords supported since 5.005 ('ABSTRACT_FROM' => '@srcdir@/GtkUI.pm', # finds $ABSTRACT 'AUTHOR' => 'Pidgin <http://pidgin.im/>') : ()), 'DEFINE' => '@DEBUG_CFLAGS@', 'INC' => '-I. -I@srcdir@ -I@top_srcdir@ -I@top_srcdir@/libpurple -I@top_srcdir@/pidgin @GTK_CFLAGS@', # 'PREREQ_PM' => { 'Pidgin' => '@VERSION@'}, # Do this because the MakeMaker Makefile is dumb, and on clean it moves # Makefile to the default setting for MAKEFILE_OLD which is Makefile.old # but this breaks running make clean more than once in a row. 'MAKEFILE_OLD' => "Makefile", 'OBJECT' => '$(O_FILES)', 'TYPEMAPS' => ["@top_srcdir@/libpurple/plugins/perl/common/typemap"], # 'OPTIMIZE' => '-g', # For debugging. );