1libs='-ldl -lm -lcrypt -lcore' 2 3# Use OS's malloc() by default. 4case "$usemymalloc" in 5'') usemymalloc='n' ;; 6esac 7 8# uses gcc. 9cc='gcc' 10ld='gcc' 11 12# as of the latest some symbols are confusing the nm lookup 13case "$usenm" in 14'') usenm='undef' ;; 15esac 16 17# disable nanosleep 18d_nanosleep='undef' 19 20# don't try to test min/max of gmtime/localtime 21sGMTIME_max=2147483647 22sGMTIME_min=-2147481748 23sLOCALTIME_max=2147483647 24sLOCALTIME_min=-2147481748 25