aboutsummaryrefslogtreecommitdiff
path: root/net-im/ricochet/files
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2017-11-28 21:37:15 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2017-11-28 21:37:15 +0000
commit4269b6b1c0be6a6e4c5038de454fe22620b5b5b1 (patch)
tree9c6e97461f3d3b8d75c38d8aa78cd30f4e50e448 /net-im/ricochet/files
parent37c548a46e100eb68e025440835c5b76853537ee (diff)
downloadports-4269b6b1c0be6a6e4c5038de454fe22620b5b5b1.tar.gz
ports-4269b6b1c0be6a6e4c5038de454fe22620b5b5b1.zip
net-im/ricochet: Unbroke the build. ${OPENSSLDIR}/include coflicted with the STL headers logic; Fixed order
Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13204
Notes
Notes: svn path=/head/; revision=455079
Diffstat (limited to 'net-im/ricochet/files')
-rw-r--r--net-im/ricochet/files/patch-ricochet.pro16
1 files changed, 14 insertions, 2 deletions
diff --git a/net-im/ricochet/files/patch-ricochet.pro b/net-im/ricochet/files/patch-ricochet.pro
index dcd1476601a0..95e60a660f0d 100644
--- a/net-im/ricochet/files/patch-ricochet.pro
+++ b/net-im/ricochet/files/patch-ricochet.pro
@@ -1,6 +1,6 @@
---- ricochet.pro.orig 2015-06-17 04:00:47 UTC
+--- ricochet.pro.orig 2016-11-04 22:05:33 UTC
+++ ricochet.pro
-@@ -46,18 +46,18 @@ CONFIG(release,debug|release):DEFINES +=
+@@ -52,18 +52,18 @@ CONFIG(release,debug|release):DEFINES +=
contains(DEFINES, RICOCHET_NO_PORTABLE) {
unix:!macx {
@@ -24,3 +24,15 @@
bundletor.files = tor/*
INSTALLS += bundletor
DEFINES += BUNDLED_TOR_PATH=\\\"/usr/lib/ricochet/tor/\\\"
+@@ -108,7 +108,10 @@ INCLUDEPATH += src
+
+ unix {
+ !isEmpty(OPENSSLDIR) {
+- INCLUDEPATH += $${OPENSSLDIR}/include
++ !equals(OPENSSLDIR, "/usr") {
++ # adding /usr/include to INCLUDEPATH breaks STL's include logic
++ INCLUDEPATH += $${OPENSSLDIR}/include
++ }
+ LIBS += -L$${OPENSSLDIR}/lib -lcrypto
+ } else:macx:!packagesExist(libcrypto) {
+ # Fall back to the OS-provided 0.9.8 if no other libcrypto is present