This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update podlators to CPAN version 4.10
[perl5.git] / hints / haiku.sh
1 # Haiku hints file
2 # $Id$
3
4 case "$prefix" in
5 '') prefix="/boot/common" ;;
6 *) ;; # pass the user supplied value through
7 esac
8
9 libpth='/boot/home/config/lib /boot/common/lib /system/lib'
10 usrinc='/boot/develop/headers/posix'
11 locinc='/boot/home/config/include /boot/common/include /boot/develop/headers'
12
13 libc='/system/lib/libroot.so'
14 libs='-lnetwork'
15
16 # Use Haiku's malloc() by default.
17 case "$usemymalloc" in
18 '') usemymalloc='n' ;;
19 esac
20
21 # Haiku generally supports hard links, but the default file system (BFS)
22 # doesn't. So better avoid using hard links.
23 d_link='undef'
24 dont_use_nlink='define'
25
26 # The array syserrlst[] is useless for the most part.
27 # Large negative numbers really kind of suck in arrays.
28 d_syserrlst='undef'
29
30 # Haiku uses gcc.
31 cc="gcc"
32 ld='gcc'
33
34 # The runtime loader library path variable is LIBRARY_PATH.
35 case "$ldlibpthname" in
36 '') ldlibpthname=LIBRARY_PATH ;;
37 esac
38
39 # as of alpha 4.1 (at the latest) some symbols are versioned,
40 # confusing the nm lookup
41 case "$usenm" in
42 '') usenm='undef' ;;
43 esac
44