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

parent 3654e267
......@@ -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"
......
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