Re: [Perlgssapi-developer] http://search.cpan.org/~agrolms/GSSAPI-0.14/GSSAPI.pm
Brought to you by:
achimgrolms
From: Achim G. <per...@gr...> - 2006-02-09 16:38:16
|
On Thursday 09 February 2006 10:29, Merijn Broeren wrote: > > split the ouput of > > kr5-config --libs gssapi > > > > to options that LIBS understands (@libs) > > and options to passed to LLDDLFLAGS > > (@others) or (@libs, @others) > > That would be a nice solution. Find attached the patch of my solution. (Can you test if that works for you?) @Merijn: on some of my Testing platform its was a problem setting LDDFLAGS and ignoring Installationdefault from $Config{lddlflags}. So my setting of LDDFLAGS becomes if ( @{$otherparm} > 0 ) { my $lddflagstring = join ' ', $Config{lddlflags}, @{$otherparm}; print "\n using LDDLFLAGS $lddflagstring"; push @LDDLFLAGS, 'LDDLFLAGS', $lddflagstring , } I think $Config{lddlflags} should be added to your if ($options{gssapi_lddlflags}) { push @LDDLFLAGS, 'LDDLFLAGS', $options{gssapi_lddlflags} } Do you agree? Achim |