freebsd-ports/sysutils/am-utils/Makefile
Cy Schubert 1199e9e38c Fix two mismatches between function declaration and definition.
In both cases, function pointer arguments were inconsistently declared
and the result worked because of C's odd rules around function pointer
(de)references.  With a stricter compiler these fail to compile.

Reported by:	pfg@
Obtained from:	base r350049 by brooks@ from CheriBSD
MFH:		2019Q3
Differential Revision:	https://reviews.freebsd.org/D20964
2019-08-15 02:21:57 +00:00

58 lines
1.7 KiB
Makefile

# Created by: Jon Wilson <jon@phuq.co.uk>
# $FreeBSD$
PORTNAME= am-utils
PORTVERSION= 6.2
PORTREVISION= 4
PORTEPOCH= 1
CATEGORIES= sysutils net
MASTER_SITES= ftp://ftp.am-utils.org/pub/am-utils/ \
ftp://ftp.cs.umn.edu/pub/am-utils/ \
ftp://ftp.u-aizu.ac.jp/pub/net/amd/am-utils/
MAINTAINER= cy@FreeBSD.org
COMMENT= Berkeley Automounter Suite of Utilities
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYING
OPTIONS_DEFINE= OPENLDAP DOCS
OPTIONS_DEFAULT=OPENLDAP
OPENLDAP_DESC= OpenLDAP support
USES= autoreconf:build bison libtool makeinfo perl5
USE_LDCONFIG= yes
MAKE_JOBS_UNSAFE=yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-shared
# Enable some filesystems which are not auto-detected with GENERIC kernel.
CONFIGURE_ARGS+= ac_cv_fs_mfs=yes ac_cv_mnttab_type_nullfs='"mfs"' ac_cv_mount_type_nullfs='"mfs"' \
ac_cv_fs_nullfs=yes ac_cv_mnttab_type_nullfs='"nullfs"' ac_cv_mount_type_nullfs='"nullfs"' \
ac_cv_fs_udf=yes ac_cv_mnttab_type_udf='"udf"' ac_cv_mount_type_udf='"udf"' \
ac_cv_fs_tmpfs=yes ac_cv_mnttab_type_tmpfs='"tmpfs"' ac_cv_mount_type_tmpfs='"tmpfs"'
MAKE_ENV= MAKEINFOFLAGS=--no-split
INSTALL_TARGET= install-strip
INFO= am-utils
DOCS= AUTHORS BUGS FAQ NEWS README.attrcache
OPENLDAP_USE= OPENLDAP=yes
OPENLDAP_CONFIGURE_WITH= ldap
OPENLDAP_CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" \
CPPFLAGS="-I${LOCALBASE}/include"
OPENLDAP_VARS= DOCS+="README.ldap ldap-id.txt ldap.schema"
OPTIONS_SUB= yes
.include <bsd.port.options.mk>
post-patch:
@${RM} ${WRKSRC}/doc/am-utils.info*
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${STAGEDIR}${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}
.endif
.include <bsd.port.mk>