diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-11-16 18:43:30 +0300 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-11-16 18:43:30 +0300 |
commit | 751116959b5b547c96e24574d20ecc89cd1dbccb (patch) | |
tree | f7a89f9f30809ec326db288e54069f8f37999a7c /perl/Makefile.PL.in | |
parent | 092a40dcf813accb11a0b6bb600dccea0b35fb1d (diff) | |
download | rspamd-751116959b5b547c96e24574d20ecc89cd1dbccb.tar.gz rspamd-751116959b5b547c96e24574d20ecc89cd1dbccb.zip |
* Perl fixes:
- remove XS API, it seems that I would never support it
- use sys(write|read) for IO in Mail::Rspamd::Client
- add proper installation process for Mail::Rspamd::Client
- remove some other legacy
--HG--
rename : perl/Client.pm => perl/lib/Mail/Rspamd/Client.pm
Diffstat (limited to 'perl/Makefile.PL.in')
-rw-r--r-- | perl/Makefile.PL.in | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/perl/Makefile.PL.in b/perl/Makefile.PL.in index 10ca63e16..31aca8f85 100644 --- a/perl/Makefile.PL.in +++ b/perl/Makefile.PL.in @@ -1,22 +1,6 @@ use ExtUtils::MakeMaker; WriteMakefile( - NAME => 'Mail::Rspamd', AUTHOR => 'Vsevolod Stakhov <vsevolod@highsecure.ru>', - XS => { 'Rspamd.xs' => 'Rspamd.c' }, - VERSION_FROM => 'Rspamd.pm', # finds $VERSION - LIBS => ['${GLIB_LDFLAGS} ${GMIME_LDFLAGS} -levent'], # e.g., '-lm' - DEFINE => '', - INC => '${GLIB_CFLAGS} ${GMIME_CFLAGS}', - PM => { 'Rspamd.pod' => '$(INST_LIBDIR)/Rspamd.pod', - 'Rspamd.pm' => '$(INST_LIBDIR)/Rspamd.pm'}, - depend => { - 'Rspamd.so' => 'Rspamd.o', - 'Rspamd.o' => 'Rspamd.c', - 'Rspamd.c' => qw{ -Rspamd/ContentType.xs Rspamd/Part.xs Rspamd/Hash.xs -Rspamd/InternetAddress.xs Rspamd/Message.xs Rspamd/Object.xs -Rspamd/TextPart.xs -}, - }, + VERSION_FROM => 'lib/Mail/Rspamd/Client.pm', # finds $VERSION ); |