Skip to content

Commit

Permalink
minisatip: Fix configure option for openssl
Browse files Browse the repository at this point in the history
The configure option which depends on openSSL is named --disable-dvbca
and not --disable-dvbaes

This fixes the following warning:
configure: WARNING: unrecognized options: --disable-dependency-tracking, --disable-nls, --disable-dvbaes

When the option is not set configure will check if openssl is available
and compile against openssl if it find openssl. This breaks the build
because openssl is not defined as a package dependency.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
  • Loading branch information
hauke authored and BKPepe committed Mar 17, 2024
1 parent b8e6c2d commit c7f77bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multimedia/minisatip/Makefile
Expand Up @@ -48,7 +48,7 @@ endef

CONFIGURE_ARGS += \
--$(if $(CONFIG_BUILD_PATENTED),en,dis)able-dvbcsa \
--$(if $(CONFIG_MINISATIP_AES),en,dis)able-dvbaes \
--$(if $(CONFIG_MINISATIP_AES),en,dis)able-dvbca \
--$(if $(CONFIG_MINISATIP_CLIENT),en,dis)able-satipc

define Package/minisatip/install
Expand Down

0 comments on commit c7f77bd

Please sign in to comment.