summaryrefslogtreecommitdiff
path: root/ltmain.sh
diff options
context:
space:
mode:
authorunknown <tim@threads.polyesthetic.msg>2000-10-04 17:54:49 -0400
committerunknown <tim@threads.polyesthetic.msg>2000-10-04 17:54:49 -0400
commit71e8ccf9f796c9f348eba0e16f7757b6e117c2ef (patch)
tree23d5915044f649b5ee9dcd9db2bdb2553f017b23 /ltmain.sh
parent90cfd0a099a6b093b0b32610e962aeb6192f74f9 (diff)
downloadmariadb-git-71e8ccf9f796c9f348eba0e16f7757b6e117c2ef.tar.gz
ltmain.sh Don't add -lc to deplibs under FreeBSD
ltmain.sh: Don't add -lc to deplibs under FreeBSD
Diffstat (limited to 'ltmain.sh')
-rw-r--r--ltmain.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/ltmain.sh b/ltmain.sh
index ae10cad021b..654bacab1e8 100644
--- a/ltmain.sh
+++ b/ltmain.sh
@@ -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"