diff options
| author | Peter Eisentraut | 2001-06-20 20:25:11 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2001-06-20 20:25:11 +0000 |
| commit | 90e2663313016d2c32bc9b75568ae28dd3dc20dc (patch) | |
| tree | 30b23b940be644333e8b2347faaeed6035b48cca /src/makefiles | |
| parent | 7fdd76cd085072a4297d0b0f592393b93a40103a (diff) | |
Shared libraries should not be linked explicitly against -lc on FreeBSD
(see http://mail.gnu.org/pipermail/libtool/2000-July/001824.html). But
apparently it should still be present with -Bsymbolic.
Diffstat (limited to 'src/makefiles')
| -rw-r--r-- | src/makefiles/Makefile.freebsd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefiles/Makefile.freebsd b/src/makefiles/Makefile.freebsd index c7f4f110d39..9f270c37fad 100644 --- a/src/makefiles/Makefile.freebsd +++ b/src/makefiles/Makefile.freebsd @@ -3,7 +3,7 @@ AROPT = cr ifdef ELF_SYSTEM export_dynamic = -export-dynamic rpath = -R$(libdir) -shlib_symbolic = -Wl,-Bsymbolic +shlib_symbolic = -Wl,-Bsymbolic -lc endif DLSUFFIX = .so |
