Skip Menu |

This queue is for tickets about the IPC-ShareLite CPAN distribution.

Report information
The Basics
Id: 16399
Status: resolved
Worked: 10 min
Priority: 0/
Queue: IPC-ShareLite

People
Owner: Nobody in particular
Requestors: dorian [...] cpan.org
cpan [...] kwaping.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: (no value)



Subject: IPC::ShareLite won't build on HFS+ due to file naming
on Mac OS X (HFS+), the linker tries to link the same file twice due to file naming. recommend renaming sharelite.c to share_lite.c to avoid collision. HFS+X filesystems do not exhibit this issue.
On Fri Dec 09 13:50:05 2005, guest wrote: Show quoted text
> on Mac OS X (HFS+), the linker tries to link the same file twice due > to file naming. recommend renaming sharelite.c to share_lite.c to > avoid collision. HFS+X filesystems do not exhibit this issue.
Thank you for posting this! I used that information to get mine to install. Here's exactly what I did: mv sharelite.c share_lite.c mv sharelite.h share_lite.h ShareLite.c: #include "sharelite.h" -> #include "share_lite.h" ShareLite.xs: #include "sharelite.h" -> #include "share_lite.h" Makefile.PL: 'OBJECT' => 'sharelite.o ShareLite.o', -> 'OBJECT' => 'share_lite.o ShareLite.o', MANIFEST: sharelite.h -> share_lite.h, sharelite.c -> share_lite.c
This is fixed in 0.10. Thanks for the report.