add Formula for pazpar2 1.6.39
pazpar2 is a metasearch software by Index Data.
YMMV but my impression is that ICU support in the current
yaz setup does not work properly (I need an extra
dependency on icu4c for things to work correctly)
which means that ICU support in pazpar2 also does
not work (even though you typically want it).
As icu4c is called problematic, I am hesitant to
add that dependency to yaz myself. If anyone who is
familiar with both yaz and homebrew wants to discuss
this, please do get in touch.
ClosesHomebrew/homebrew#27547.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
- build 17.0 via --devel and feature flags
- optional features incl sctp, dirty schedulers, native libraries
- support wx modules incl observer using updated wxmac formula
- skip ODBC patch for head and devel as upstream has included it
- fix dialyzer test path for stable builds
- unset ERL_* compiler environment variables to avoid failed builds
While using openconnect on OS X 10.9.2, I noticed it was spewing the following
message every minute after connecting:
DTLS handshake failed: 1
90555:error:14102410:SSL routines:DTLS1_READ_BYTES:sslv3 alert
handshake failure:
/SourceCache/OpenSSL098/OpenSSL098-50/src/ssl/d1_pkt.c:
1037:SSL alert number 40
...
This turns out to be a bug in openssl <= 1.0.1e, per
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701826 and
Switch to brew's openssl (1.0.1f at this moment) to pick up the bugfix.
Signed-off-by: Jay Soffian <jaysoffian@gmail.com>
openconnect ships with a version.sh script to determine the current version,
but it expects to run from within a clean git clone, which it determines in
part by checking for [-d .git]. For it to work properly we need to:
1. symlink to the git clone (so that the [-d .git] test works).
2. clone without --shallow (so that git describe can find a proper tag)
3. copy autogen.sh before modifying it (so that the checkout isn't dirty)
Signed-off-by: Jay Soffian <jaysoffian@gmail.com>