diff options
| author | nibbles 2bits | 2012-10-02 13:59:08 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-10-02 14:24:23 -0700 |
| commit | 47cfcad4d14e91a807417741b7904373bbe22e08 (patch) | |
| tree | 339a83484722966b6c80c66a1be78004f65d3827 /Library | |
| parent | ea97e9de6dc5d7dda0600cfc48bbd7a6e96c09e5 (diff) | |
| download | homebrew-47cfcad4d14e91a807417741b7904373bbe22e08.tar.bz2 | |
crossroads: fix pgm build errors
crossroads builds an internal libpgm from source, but that causes
build errors because of a conflicting struct definition with OSX
`netinet.h`. So instead of dealing with that, link crossroads
against our libpgm-5.2 which builds without error. Add a couple
of ENV vars to override `pkg-config` and help crossroads find
the libpgm we now depend on, which it can't find otherwise because
it's looking for `openpgm-5.1.pc` and we offer `openpgm-5.2.pc`.
Crossroads passes `make check` on 10.8.2 with XCode-4.5.
Fixes #15217
Closes #15255.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/crossroads.rb | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Library/Formula/crossroads.rb b/Library/Formula/crossroads.rb index 02578e2ff..7b8fc781e 100644 --- a/Library/Formula/crossroads.rb +++ b/Library/Formula/crossroads.rb @@ -9,8 +9,10 @@ class Crossroads < Formula option 'with-pgm', 'Build with PGM extension' + depends_on 'pkg-config' => :build depends_on :automake depends_on :libtool + depends_on 'libpgm' if build.include? 'with-pgm' fails_with :llvm do build 2326 @@ -20,8 +22,16 @@ class Crossroads < Formula def install system "./autogen.sh" if build.head? + # Help it find openpgm-5.2 because it searches for openpgm-5.1.pc + # https://github.com/mxcl/homebrew/issues/15217 + if build.include? 'with-pgm' + libpgm = Formula.factory('libpgm') + ENV['OpenPGM_CFLAGS'] = "-I#{libpgm.include}/pgm-5.2 -I#{libpgm.lib}/pgm-5.2/include" + ENV['OpenPGM_LIBS'] = "-L#{libpgm.lib} -lpgm" + end + args = ["--disable-dependency-tracking", "--prefix=#{prefix}"] - args << "--with-pgm" if build.include? 'with-pgm' + args << "--with-system-pgm" if build.include? 'with-pgm' system "./configure", *args system "make" |
