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