blob: 5368e6bda346fca5ee52102ebdefb2375b7dde50 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
case "$(uname)" in
Darwin)
export CFLAGS="$CFLAGS -D_POSIX_C_SOURCE=200112L"
;;
esac
./configure --prefix=$PREFIX --disable-static --enable-reentrant
make -j $CPU_COUNT shared
make install
|