Re: [Perlgssapi-developer] GSSAPI and cpan2rpm
Brought to you by:
achimgrolms
|
From: Achim G. <per...@gr...> - 2006-02-16 22:18:34
|
On Thursday 16 February 2006 23:13, Dax Kelson wrote:
> On Thu, 2006-02-16 at 15:11 -0700, Dax Kelson wrote:
> > Is there some metadata missing?
>
> According to the man page for cpan2rpm:
>
> "The script determines the version number of the module by consulting
> the Makefile.PL=E2=80=99s VERSION or VERSION_FROM fields."
The Makefile goes like this:
>WriteMakefile(
LIBS =3D> join (' ', @GSSLIBS),
'NAME' =3D> 'GSSAPI',
'VERSION_FROM' =3D> 'GSSAPI.pm',
'PREREQ_PM' =3D> { 'Test::More' =3D> 0 },
@LDDLFLAGS,
'DEFINE' =3D> join (' ', @EXTRADEFINES),
'INC' =3D> $incconf,
'macro' =3D> { OTHER_XS =3D> $otherxs },
'depend' =3D> { 'GSSAPI.c' =3D> '$(OTHER_XS)' }
);
Try what happens if you change that to
>WriteMakefile(
LIBS =3D> join (' ', @GSSLIBS),
'NAME' =3D> 'GSSAPI',
'VERSION' =3D> '0.18',
'PREREQ_PM' =3D> { 'Test::More' =3D> 0 },
@LDDLFLAGS,
'DEFINE' =3D> join (' ', @EXTRADEFINES),
'INC' =3D> $incconf,
'macro' =3D> { OTHER_XS =3D> $otherxs },
'depend' =3D> { 'GSSAPI.c' =3D> '$(OTHER_XS)' }
);
and let me know, i will change that in distribution if that
breaks things.
Achim
|