Commit fb38ba70 authored by unknown's avatar unknown

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


ltmain.sh:
  Don't add -lc to deplibs under FreeBSD
parent 7c6a308e
...@@ -1789,6 +1789,9 @@ compiler." ...@@ -1789,6 +1789,9 @@ compiler."
*-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*) *-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*)
# these systems don't actually have a c library (as such)! # 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. # Add libc to deplibs on all other systems.
deplibs="$deplibs -lc" deplibs="$deplibs -lc"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment