mherger wrote: 
> 
> Would you have any idea why that would happen? 
> 
I think the module build will get the relevant libs / ldflags from perl
itself, so I'd start by checking where perl includes libperl for
linking
- perl -V|grep  'lib\|dlf\|ld\|libperl'
- perl's Config.pm
- compare the config of the perl used to compile 5.30 to the one for
5.32

Manually running perl Makefile.PL for XML-Parser-2.44 and searching the
resulting Makefile for libperl could also identify the location of the
inclusion (LIBS, LDDLFLAGS etc.)

> 
> Or even how this could be influenced at build time? 
> 
Not sure if perl's build process includes variables from the shell
environment.
If you know which variable to change, you probably can do something
like

Code:
--------------------
    perl Makefile.PL LIBS=$(perl -MConfig -e 'print "$Config{libs}\n";'|sed -e 
"s/-lperl//")
--------------------



'Various SW' (https://www.nexus0.net/pub/sw/): Web Interface | TUI |
Playlist Editor / Generator | Music Classification | Similar Music |
Announce | EventTrigger | Chiptunes | LMSlib2go | ...
'Various HowTos' (https://www.nexus0.net/pub/documents/LMS/): build a
self-contained LMS | Bluetooth/ALSA | Control LMS with any device | ...
------------------------------------------------------------------------
Roland0's Profile: http://forums.slimdevices.com/member.php?userid=56808
View this thread: http://forums.slimdevices.com/showthread.php?t=113356

_______________________________________________
Squeezecenter mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/squeezecenter

Reply via email to