This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
enable LFS on GNU/Hurd
[perl5.git] / hints / haiku.sh
1 # Haiku hints file
2 # $Id$
3
4 prefix="/boot/common"
5
6 libpth='/boot/home/config/lib /boot/common/lib /system/lib'
7 usrinc='/boot/develop/headers/posix'
8 locinc='/boot/home/config/include /boot/common/include /boot/develop/headers'
9
10 libc='/system/lib/libroot.so'
11 libs='-lnetwork'
12
13 # Use Haiku's malloc() by default.
14 case "$usemymalloc" in
15 '') usemymalloc='n' ;;
16 esac
17
18 # Haiku generally supports hard links, but the default file system (BFS)
19 # doesn't. So better avoid using hard links.
20 d_link='undef'
21 dont_use_nlink='define'
22
23 # The array syserrlst[] is useless for the most part.
24 # Large negative numbers really kind of suck in arrays.
25 d_syserrlst='undef'
26
27 # Haiku uses gcc.
28 cc="gcc"
29 ld='gcc'
30
31 # The runtime loader library path variable is LIBRARY_PATH.
32 case "$ldlibpthname" in
33 '') ldlibpthname=LIBRARY_PATH ;;
34 esac