diff options
author | Mike Hommey <mh@glandium.org> | 2012-05-03 12:12:49 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2012-05-09 23:16:48 (GMT) |
commit | a6770a70493bc25495d17bc8b4a0246b3877918b (patch) | |
tree | ce6bfddce317103028930ff417c18e4a3fc98c77 /configure.ac | |
parent | 2e671ffbadc02fc7de8cbafdd1031e3b0ad73c5b (diff) | |
download | jemalloc-a6770a70493bc25495d17bc8b4a0246b3877918b.zip jemalloc-a6770a70493bc25495d17bc8b4a0246b3877918b.tar.gz jemalloc-a6770a70493bc25495d17bc8b4a0246b3877918b.tar.bz2 |
Remove -fno-common compiler flag for OS X.
It doesn't allow the je_malloc_message and je_malloc_conf symbols to be
overridden when linking statically.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a09db7d..a72019e 100644 --- a/configure.ac +++ b/configure.ac @@ -239,7 +239,7 @@ dnl to make happen otherwise. default_munmap="1" case "${host}" in *-*-darwin*) - CFLAGS="$CFLAGS -fno-common" + CFLAGS="$CFLAGS" abi="macho" AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ]) RPATH="" |