From: Slaven Rezic Date: Mon, 31 Mar 1997 14:17:42 +0000 (+0200) Subject: hints/freebsd.sh update (don't use -lmalloc) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1fd066cbdf7ee74f73ad41ee661bdb6d8d7e141c;p=p5sagit%2Fp5-mst-13.2.git hints/freebsd.sh update (don't use -lmalloc) 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 --- diff --git a/hints/freebsd.sh b/hints/freebsd.sh index 4b7653a..7ec8751 100644 --- a/hints/freebsd.sh +++ b/hints/freebsd.sh @@ -68,9 +68,11 @@ case "$osvers" in ;; # # 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' @@ -81,6 +83,7 @@ case "$osvers" in # Guesses at what will be needed after 2.2 *) usevfork='true' usemymalloc='n' + libswanted=`echo $libswanted | sed 's/ malloc / /'` ;; esac