Apparently OS X doesn't include the PCRE headers, which szl's configure
looks for, even though it ends up linking against the system PCRE dylib.
See nginx for similar behavior.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This broke the build for a lot of people, and since nothing of import
explicitly requires a universal build, I think it's best to just revert
it for now.
Though I would really like to get GMP building universal eventually, so
patches welcome.
This reverts commit c0b2528a705891af3f1be9bc33397a334c903655.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
By depending on libsndfile, SoX gains the ability to read and write
CAF (Core Audio Format) files, just like the afconvert command-line
utility. CAF is the preferred uncompressed audio file format on iOS
platforms.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
The patch is in the upstream git repository, so it should be in the next
version. FixesHomebrew/homebrew#6606.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
The upstream libstemmer project constantly changes the contents of the
tarball, so doing checksum verification isn't feasible unless we want to
be updating the formula constantly. Thus, use a head-only sub-formula
without a checksum.
Rather than make it an option, I've just set it to always build with
libstemmer per Homebrew/homebrew#5730. We can always add the option later if it's
necessary.
Includes an unrelated fix to put the var directory in
HOMEBREW_PREFIX/var.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
bdw-gc fails with LLVM build 2335, but stklos shouldn't fail at all
anymore since bdw-gc is now an explicit dependency instead of being
built internally.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This adds 'bdw-gc' as a dependency and fixes compilation on systems
where ucontext is deprecated. We could just duplicate the fix here, but
listing it as a dependency instead also avoids a symlink race for the
bdw-gc libraries.
Should fixHomebrew/homebrew#7423, for real this time.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
The gtest-config script tries to be clever in determining its install
location, but Homebrew's cellar/prefix and symlinks confuse it. This
works around the 'cleverness' by lying to gtest-config.
FixesHomebrew/homebrew#7009.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>