diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2013-08-10 00:39:42 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2013-08-10 00:39:42 +0800 |
commit | 2aaae086a695fd7a9d497b497a2e49b498f5045c (patch) | |
tree | c27acf28b9bb5f8f30f511e0010e04d8eecdad6a | |
parent | 6055c3bfe9b2f58b6f5495826ab3991addfe3e1e (diff) | |
download | freebsd-ports-gnome-2aaae086a695fd7a9d497b497a2e49b498f5045c.tar.gz freebsd-ports-gnome-2aaae086a695fd7a9d497b497a2e49b498f5045c.tar.zst freebsd-ports-gnome-2aaae086a695fd7a9d497b497a2e49b498f5045c.zip |
- Add note about LDAP issue (-DLDAP_DEPRECATED)
PR: ports/177401
-rw-r--r-- | ftp/curl/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ftp/curl/Makefile b/ftp/curl/Makefile index ae265ae5e4ee..dfa22b84fcc8 100644 --- a/ftp/curl/Makefile +++ b/ftp/curl/Makefile @@ -251,6 +251,16 @@ post-patch: @${REINPLACE_CMD} -e 's|\(flags_dbg_off=\)".*"|\1""|; s|\(flags_opt_off=\)".*"|\1""|' ${WRKSRC}/configure @${REINPLACE_CMD} -e '/^SUBDIRS = / s|$$| docs|; /^DIST_SUBDIRS = / s| docs||; /cd docs &&/d' ${WRKSRC}/Makefile.in +pre-configure: +.if ${PORT_OPTIONS:MLDAP} + @${ECHO_MSG} "Note:" + @${ECHO_MSG} "" + @${ECHO_MSG} " Enabling LDAP option is known to fail with unpatched Mk/bsd.ldap.mk." + @${ECHO_MSG} " See PR/177401 for detailed information." + @${ECHO_MSG} " URL: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/177401" + @${ECHO_MSG} "" +.endif + post-install: .if !defined(BUILDING_HIPHOP) ${INSTALL_DATA} ${WRKSRC}/docs/libcurl/libcurl.m4 ${PREFIX}/share/aclocal/ |