mirror of
https://github.com/irssi/irssi.git
synced 2026-08-14 14:12:11 +02:00
irssi 1.0.0 will not build if Perl is enabled and a separate object code directory is used. The problem was a relative path to an internal Perl dependency in four Makefile.PL.in files.
8 lines
468 B
Perl
8 lines
468 B
Perl
use ExtUtils::MakeMaker;our $AM_DEFAULT_VERBOSITY='@AM_DEFAULT_VERBOSITY@';require "@top_srcdir@/src/perl/Makefile_silent.pm";
|
|
|
|
WriteMakefile('NAME' => 'Irssi::Irc',
|
|
'LIBS' => '',
|
|
'OBJECT' => '$(O_FILES)',
|
|
'TYPEMAPS' => ['../common/typemap'],
|
|
'INC' => '-I../../.. -I@top_srcdir@/src -I@top_srcdir@/src/core -I@top_srcdir@/src/irc/core -I@top_srcdir@/src/irc @GLIB_CFLAGS@',
|
|
'VERSION_FROM' => '@srcdir@/Irc.pm');
|