blob: 4902a84a18d0e41d2e81d2adbc5543a0dcb2cb8a (
plain) (
blame)
| 1
2
3
4
5
6
7
 | 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) || exit 1
 |