| Age | Commit message (Collapse) | Author |
|
OS X 10.10 seems to require "-L{lib}" as a C/C++ compiler
argument in order to link properly. This is causing
several brew test failures.
This patch modifies several formula in a single commit
by adding "-L{lib}" to the brew test ENV.cc argument
lists. I manually verified that these specific tests
are failing with the change and passing with it on 10.10.
To identify other formulae that may be subject to this
issue, the following may be used:
~~~
grep -rnI 'ENV\.cc.*test\.c' Library/Formula \
| grep -v '\-L#{lib}'
~~~
Closes #35806.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
|
|
Closes #32583.
|
|
|
|
|
|
|
|
Update to 2.1.0
Closes #28601.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
Closes #27622.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
tinyxml2 is a light-weight c++ library for parsing xml. It
was previously submitted as a head-only formula in #23381
but was put on hold until releases could be tagged upstream.
The 2.0.2 release has just been tagged.
tinyxml2: add test that uses pkg-config to search for library
tinyxml2: add basic test for compiling and linking
Update tinyxml2.rb
Remove pkg-config test.
|