Skip to content
This repository has been archived by the owner on Jul 17, 2019. It is now read-only.

Commit

Permalink
Repair current OpenSSL static reference from homebrew
Browse files Browse the repository at this point in the history
* These are the default locations, as of today, for Mac OS X 10.11.4 *(El Capitan)*

**NOTES**
* This could really use some environment variables for homebrew root and which SSL version is in use. Not familiar enough yet with recent Qt to do this at this time.
* Symbolic links could also be used but again determining the current homebrew SSL installed is something to be desired e.g. similar to `$ openssl version` e.g. perhaps a `cut` of `$ brew info openssl`?

Refs:
* http://brew.sh/ *(homepage)*
* https://github.com/Homebrew/brew *(repo)*

Historical refs:
* QupZilla#1888
* QupZilla#1850
  • Loading branch information
Martii committed May 11, 2016
1 parent 9d8552a commit b937359
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/lib.pro
Original file line number Diff line number Diff line change
Expand Up @@ -480,8 +480,8 @@ os2 {

mac {
# homebrew openssl
INCLUDEPATH += /opt/local/include
LIBS += -L/opt/local/lib
INCLUDEPATH += /usr/local/Cellar/openssl/1.0.2h/include
LIBS += -L/usr/local/Cellar/openssl/1.0.2h/lib

LIBS += -lcrypto -framework CoreServices
}
Expand Down

1 comment on commit b937359

@Martii
Copy link
Owner

@Martii Martii commented on b937359 May 11, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Build (beta'ish) release and notes at https://github.com/Martii/qupzilla/releases/tag/v2.0.0+b937359 for testing.

NOTE
Due to the huge nature of this file it won't be archived between upstream commits. Think of this as a semi-weekly/monthly that will disappear when the next one is uploaded.

Please sign in to comment.