aboutsummaryrefslogtreecommitdiff
path: root/comms/cqrlog
diff options
context:
space:
mode:
authorDiane Bruce <db@FreeBSD.org>2020-01-04 02:56:16 +0000
committerDiane Bruce <db@FreeBSD.org>2020-01-04 02:56:16 +0000
commite1c31cd6e4168142cd81d79477d811a283b7ee18 (patch)
tree85985c663db4fb8843ff8c0a4f2c051d108e1d32 /comms/cqrlog
parent324d79c77972f675d44fcff7618ef4914e775ae6 (diff)
downloadports-e1c31cd6e4168142cd81d79477d811a283b7ee18.tar.gz
ports-e1c31cd6e4168142cd81d79477d811a283b7ee18.zip
Unbreak port.
@acm forgot to remove an obsolete patch file Reported by: pkg-fallout
Notes
Notes: svn path=/head/; revision=521975
Diffstat (limited to 'comms/cqrlog')
-rw-r--r--comms/cqrlog/files/patch-src_synapse_ssl__openssl__lib.pas29
1 files changed, 0 insertions, 29 deletions
diff --git a/comms/cqrlog/files/patch-src_synapse_ssl__openssl__lib.pas b/comms/cqrlog/files/patch-src_synapse_ssl__openssl__lib.pas
deleted file mode 100644
index dfa36a92a988..000000000000
--- a/comms/cqrlog/files/patch-src_synapse_ssl__openssl__lib.pas
+++ /dev/null
@@ -1,29 +0,0 @@
---- src/synapse/ssl_openssl_lib.pas.orig 2018-07-11 04:13:02 UTC
-+++ src/synapse/ssl_openssl_lib.pas
-@@ -1875,23 +1875,12 @@ begin
-
- Paths := TStringList.Create;
- try
-- Paths.Add('/usr/lib64/');
-- Paths.Add('/lib64/');
-- Paths.Add('/usr/lib/x86_64-linux-gnu/');
-- Paths.Add('/lib/x86_64-linux-gnu/');
-- Paths.Add('/usr/lib/i386-linux-gnu/');
-- Paths.Add('/lib/i386-linux-gnu/');
-+ Paths.Add('%%OPENSSLLIB%%');
- Paths.Add('/usr/lib/');
- Paths.Add('/lib/');
-
-- DLLSSLName := MyFindFile('libssl*1.0.*', Paths);
-- DLLUtilName := MyFindFile('libcrypto*1.0.*', Paths);
--
-- if (DLLSSLName = '') then
-- begin
-- DLLSSLName := MyFindFile('libssl*1.1*', Paths);
-- DLLUtilName := MyFindFile('libcrypto*1.1*', Paths)
-- end
-+ DLLSSLName := MyFindFile('libssl.so', Paths);
-+ DLLUtilName := MyFindFile('libcrypto.so', Paths)
- finally
- FreeAndNil(Paths)
- end;