diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-02-17 15:04:24 +0300 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-02-17 15:04:24 +0300 |
commit | 2300ff734633aa85f5ef52d6310c7253ecc5b4bc (patch) | |
tree | ae67f35413ceb82257304fefbe08c3f74bbb518f /perl | |
parent | 0fd2682e113c400af6c43da72543bd75448e5be8 (diff) | |
download | rspamd-2300ff734633aa85f5ef52d6310c7253ecc5b4bc.tar.gz rspamd-2300ff734633aa85f5ef52d6310c7253ecc5b4bc.zip |
* Add issue to cmake to make perl module as well
* Fix some portability issues (to FreeBSD mainly)
* Add script to make modules list
Diffstat (limited to 'perl')
-rw-r--r-- | perl/Makefile.PL.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl/Makefile.PL.in b/perl/Makefile.PL.in index 9b436f12f..502e84227 100644 --- a/perl/Makefile.PL.in +++ b/perl/Makefile.PL.in @@ -2,8 +2,8 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'rspamd', VERSION_FROM => 'rspamd.pm', # finds $VERSION - LIBS => ['%%libs%%'], # e.g., '-lm' + LIBS => ['${GLIB_LDFLAGS} ${GMIME_LDFLAGS} -levent'], # e.g., '-lm' DEFINE => '', - INC => '%%include%%', + INC => '${GLIB_CFLAGS} ${GMIME_CFLAGS}', ); |