Skip to content

Commit

Permalink
www/elinks: Revert build-fix with ssl from ports
Browse files Browse the repository at this point in the history
The build fix was only needed for breakage caused by pkgconf which has
meanwhile been fixed.

This reverts commit 9de718a.
  • Loading branch information
Zirias committed Mar 16, 2024
1 parent f6c9716 commit 4c0ac6f
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions www/elinks/files/patch-meson.build
Expand Up @@ -11,16 +11,6 @@
if compiler.has_header('libgen.h')
conf_data.set('HAVE_LIBGEN_H', 1)
endif
@@ -396,7 +400,8 @@ if conf_data.get('CONFIG_OPENSSL')
if conf_data.get('CONFIG_OPENSSL')
ssldeps = dependency('openssl', static: st, required: false)
if not ssldeps.found()
- ssldeps = compiler.find_library('ssl', static: st, dirs: [get_option('prefix')+'/lib', '/usr/local/lib'])
+ ssldeps = compiler.find_library('crypto', static: st, dirs: [get_option('prefix')+'/lib', '/usr/local/lib'])
+ ssldeps += compiler.find_library('ssl', static: st, dirs: [get_option('prefix')+'/lib', '/usr/local/lib'])
endif
deps += ssldeps
conf_data.set('USE_OPENSSL', true)
@@ -959,7 +964,7 @@ endif
conf_data.set('HAVE_ICONV', 1)
endif
Expand Down

0 comments on commit 4c0ac6f

Please sign in to comment.