summaryrefslogtreecommitdiffstats
path: root/rules/host-system-openssl.make
blob: e1f30a4e6cd22a0cc20900c546ea436fa0fab7f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*-makefile-*-
#
# Copyright (C) 2021 by Michael Olbrich <m.olbrich@pengutronix.de>
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
HOST_PACKAGES-$(PTXCONF_HOST_SYSTEM_OPENSSL) += host-system-openssl
HOST_SYSTEM_OPENSSL_LICENSE	:= ignore

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

$(STATEDIR)/host-system-openssl.prepare:
	@$(call targetinfo)
	@echo "Checking for openssl ..."
	@pkg-config openssl || \
		ptxd_bailout "openssl development files not found!" \
		"Please install libssl-dev (debian) or openssl-devel (fedora)"
	@$(call touch)

# vim: syntax=make