mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +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
449 B
Perl
8 lines
449 B
Perl
use ExtUtils::MakeMaker;our $AM_DEFAULT_VERBOSITY='@AM_DEFAULT_VERBOSITY@';require "@top_srcdir@/src/perl/Makefile_silent.pm";
|
|
|
|
WriteMakefile('NAME' => 'Irssi::UI',
|
|
'LIBS' => '',
|
|
'OBJECT' => '$(O_FILES)',
|
|
'TYPEMAPS' => ['../common/typemap'],
|
|
'INC' => '-I../../.. -I@top_srcdir@/src -I@top_srcdir@/src/core -I@top_srcdir@/src/fe-common/core @GLIB_CFLAGS@',
|
|
'VERSION_FROM' => '@srcdir@/UI.pm');
|