Thread Module::Build und ExtUtils::Liblist (1 answers)
Opened by pktm at 2010-01-12 18:02

pktm
 2010-01-12 18:02
#130456 #130456
User since
2003-08-07
2921 Artikel
BenutzerIn
[Homepage]
user image
Hallo!

Kann man eigentlich ExtUtils::Liblist irgwendwie mit Module::Build vereinbaren?

Ich versuche gerade aus einem Makefile.PL ein Build.PL zu machen, aber in dem Makefile.PL steht folgendes drin:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use ExtUtils::Liblist;

my @vars = ExtUtils::Liblist->ext( '-L/sw/lib -ltidy', 0, 1 );
my $libs = $vars[2];

WriteMakefile(
NAME => 'HTML::Tidy',
# ...

LIBS => [$libs],
NEEDS_LINKING => 1,
INC => '-I. -I/usr/include/tidy -I/usr/local/include/tidy -I/sw/include/tidy',

EXE_FILES => [qw(bin/webtidy)],
);


und da stehe ich gerade voll auf dem Schlauch. Weiß wer weiter?

Grüße, pktm
http://www.intergastro-service.de (mein erstes CMS :) )

View full thread Module::Build und ExtUtils::Liblist