Here's an update for hints/freebsd.sh. Configure should not try to use
-lmalloc, since it's very likely an old malloc from the compatibility
package compat1.x.
p5p-msgid:
199703311417.QAA04162@cabulja.herceg.de
;;
#
# 2.2 and above have phkmalloc(3).
+# don't use -lmalloc (maybe there's an old one from 1.1.5.1 floating around)
2.2*)
usevfork='true'
usemymalloc='n'
+ libswanted=`echo $libswanted | sed 's/ malloc / /'`
d_dosuid='define'
d_setregid='define'
d_setreuid='define'
# Guesses at what will be needed after 2.2
*) usevfork='true'
usemymalloc='n'
+ libswanted=`echo $libswanted | sed 's/ malloc / /'`
;;
esac