This modification is necessary to provide a version of
glib-networking that will check CA certificates.
This is necessary to make the Ruby gem 'rabbiter' work.
ClosesHomebrew/homebrew#22180.
Signed-off-by: Xiyue Deng <manphiz@gmail.com>
As a PostgreSQL n00b, this is the information I wanted.
Ideally we’d set a default configuration location for postgres to look, however apparently, this is not possible.
Side note: it's about time we split caveats out. One of these is advise for failed builds, and I just added usage. Usage is hardly caveats, but generally usage is cool and we should encourage it as a separate section, and encourage people to add links perhaps.
Allow `build.with?` and similar methods to be used during the test
phase. The BuildOptions (`build`) are initialized with the
`Tab.used_options` unless explicitly overwritten on the command line.
So basically `build.with?` works in `def install` and in `test do` as
one would naively expect. (For the test, gramatically it should be
`built.with?` but who cares)
If a formula was installed `--with-python`, now the tests are also
run `--with-python`. This enables us to use the `python do ... end` in
a meaningful manner.
Using `python do ... end` blocks for the tests, because the bot.brew.sh has
system python per default and we need to set the PYTHONPATH for the test.
Potentially to different values for Python 2.x and 3.x.
Also adds `--with-fop` to build pdf docs aswell as adding unixodbc dep
on Mavericks which no longer include iodbc in the 10.9 SDK.
ClosesHomebrew/homebrew#20708.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
As it turns out, *nothing* in Homebrew that depends on libftdi is
compatible with libftdi 1.0.
avrdude doesn't even have a configure option for it, but will attempt to
link with it if libusb is also present.
lcdproc has a configure option, but instead of erroring out if it's not
found, it just silently compiles without it.
Rather than revert and wait (possibly forever) for these things to be
updated to the new library, I'm just adding the older version. It
installs alongside libftdi 1.0 without any conflicts.
glew adds "Requires: glu" to glew.pc, even though on fresh OS X installs
there will not be a glu.pc anywhere on the system (but the library
itself is in the system's OpenGL framework).
The requirement will actually be satisfied if XQuartz is installed, but
it's only a coincidence. So I'm removing this, which should allow gource
to build on systems without XQuartz. *shrug*
FixesHomebrew/homebrew#22025.