From owner-svn-ports-all@freebsd.org Sun Mar 4 22:34:24 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9D8EDF3A051; Sun, 4 Mar 2018 22:34:24 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1547873F27; Sun, 4 Mar 2018 22:34:23 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 73E151B802; Sun, 4 Mar 2018 22:34:23 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w24MYN9C018975; Sun, 4 Mar 2018 22:34:23 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w24MYNPi018974; Sun, 4 Mar 2018 22:34:23 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201803042234.w24MYNPi018974@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 4 Mar 2018 22:34:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463608 - head/sysutils/condor X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/sysutils/condor X-SVN-Commit-Revision: 463608 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Mar 2018 22:34:24 -0000 Author: antoine Date: Sun Mar 4 22:34:22 2018 New Revision: 463608 URL: https://svnweb.freebsd.org/changeset/ports/463608 Log: Mark BROKEN: fails to build src/condor_io/condor_auth_kerberos.cpp:251:27: error: assigning to 'krb5_error_code (*)(krb5_context, krb5_auth_context, char *, krb5_principal, krb5_principal, krb5_ccache, int, krb5_data *)' (aka 'int (*)(_krb5_context *, _krb5_auth_context *, char *, krb5_principal_data *, krb5_principal_data *, _krb5_ccache *, int, _krb5_data *)') from incompatible type 'krb5_error_code (krb5_context, krb5_auth_context, const char *, krb5_principal, krb5_principal, krb5_ccache, int, krb5_data *)' (aka 'int (_krb5_context *, _krb5_auth_context *, const char *, krb5_principal_data *, krb5_principal_data *, _krb5_ccache *, int, _krb5_data *)'): type mismatch at 3rd parameter ('char *' vs 'const char *') krb5_fwd_tgt_creds_ptr = krb5_fwd_tgt_creds; ^~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout Modified: head/sysutils/condor/Makefile Modified: head/sysutils/condor/Makefile ============================================================================== --- head/sysutils/condor/Makefile Sun Mar 4 22:34:17 2018 (r463607) +++ head/sysutils/condor/Makefile Sun Mar 4 22:34:22 2018 (r463608) @@ -17,6 +17,8 @@ COMMENT= High-throughput computing on distributively o LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE-2.0.txt +BROKEN= fails to build + LIB_DEPENDS+= libkrb5support.so:security/krb5 \ libpcre.so:devel/pcre \ libcurl.so:ftp/curl \