diff options
author | tim@threads.polyesthetic.msg <> | 2000-10-04 17:54:49 -0400 |
---|---|---|
committer | tim@threads.polyesthetic.msg <> | 2000-10-04 17:54:49 -0400 |
commit | e0e65542e0bd04d8394d4367cde7dfc7ff4ff7c9 (patch) | |
tree | 23d5915044f649b5ee9dcd9db2bdb2553f017b23 /ltmain.sh | |
parent | 3654e2673bdff7b016ffecef6225342c7be38651 (diff) | |
download | mariadb-git-e0e65542e0bd04d8394d4367cde7dfc7ff4ff7c9.tar.gz |
ltmain.sh Don't add -lc to deplibs under FreeBSD
Diffstat (limited to 'ltmain.sh')
-rw-r--r-- | ltmain.sh | 3 |
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" |