8e7450b63d
Fix the following build failure raised since bump of glibc to version 2.39 in commitb5680f53d6
: /home/buildroot/autobuild/instance-0/output-1/host/lib/gcc/powerpc-buildroot-linux-gnu/13.2.0/../../../../powerpc-buildroot-linux-gnu/bin/ld: src/util.o: in function `Util_checkCredentials': util.c:(.text+0x32e8): undefined reference to `crypt' Fixes:b5680f53d6
- http://autobuild.buildroot.org/results/12b2c6665280dcb813a58d9b025038bacc3b8d51 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# monit
|
|
#
|
|
################################################################################
|
|
|
|
MONIT_VERSION = 5.33.0
|
|
MONIT_SITE = http://mmonit.com/monit/dist
|
|
MONIT_LICENSE = AGPL-3.0 with OpenSSL exception
|
|
MONIT_LICENSE_FILES = COPYING
|
|
MONIT_CPE_ID_VENDOR = mmonit
|
|
MONIT_SELINUX_MODULES = monit
|
|
|
|
# Touching Makefile.am:
|
|
# 0001-configure.ac-fixes-missing-config-macro-dir.patch touches configure.ac
|
|
MONIT_AUTORECONF = YES
|
|
|
|
MONIT_CONF_ENV = \
|
|
libmonit_cv_setjmp_available=yes \
|
|
libmonit_cv_vsnprintf_c99_conformant=yes \
|
|
ax_cv_check_cflags___fstack_protector_all=$(if $(BR2_TOOLCHAIN_HAS_SSP),yes,no) \
|
|
ac_cv_ipv6=yes
|
|
|
|
MONIT_CONF_OPTS += \
|
|
--without-pam \
|
|
--with-largefiles
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBXCRYPT),y)
|
|
MONIT_DEPENDENCIES += libxcrypt
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
MONIT_CONF_ENV += LIBS=`$(PKG_CONFIG_HOST_BINARY) --libs openssl`
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
MONIT_CONF_OPTS += --with-ssl-static=$(STAGING_DIR)/usr
|
|
else
|
|
MONIT_CONF_OPTS += --with-ssl --with-ssl-dir=$(STAGING_DIR)/usr
|
|
endif
|
|
MONIT_DEPENDENCIES += host-pkgconf openssl
|
|
else
|
|
MONIT_CONF_OPTS += --without-ssl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
MONIT_CONF_OPTS += --with-zlib
|
|
MONIT_DEPENDENCIES += zlib
|
|
else
|
|
MONIT_CONF_OPTS += --without-zlib
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|