ltmain.sh Don't add -lc to deplibs under FreeBSD

ltmain.sh:
  Don't add -lc to deplibs under FreeBSD
This commit is contained in:
unknown 2000-10-04 17:54:49 -04:00
parent 90cfd0a099
commit 71e8ccf9f7

View file

@ -1789,6 +1789,9 @@ compiler."
*-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*)
# these systems don't actually have a c library (as such)!
;;
*-*-freebsd*)
# FreeBSD needs to handle -lc (or -lc_r) itself
;;
*)
# Add libc to deplibs on all other systems.
deplibs="$deplibs -lc"