From owner-svn-ports-head@freebsd.org Tue May 17 07:46:05 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 69E4FB3E752; Tue, 17 May 2016 07:46:05 +0000 (UTC) (envelope-from hrs@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 mx1.freebsd.org (Postfix) with ESMTPS id 46A601CB4; Tue, 17 May 2016 07:46:05 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4H7k40Q040408; Tue, 17 May 2016 07:46:04 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4H7k4eh040407; Tue, 17 May 2016 07:46:04 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201605170746.u4H7k4eh040407@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Tue, 17 May 2016 07:46:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415376 - head/mail/mu4e/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 May 2016 07:46:05 -0000 Author: hrs Date: Tue May 17 07:46:04 2016 New Revision: 415376 URL: https://svnweb.freebsd.org/changeset/ports/415376 Log: Fix build. Modified: head/mail/mu4e/files/patch-configure.ac Modified: head/mail/mu4e/files/patch-configure.ac ============================================================================== --- head/mail/mu4e/files/patch-configure.ac Tue May 17 06:06:53 2016 (r415375) +++ head/mail/mu4e/files/patch-configure.ac Tue May 17 07:46:04 2016 (r415376) @@ -34,7 +34,7 @@ # check for makeinfo AC_CHECK_PROG(have_makeinfo,makeinfo,yes,no) -@@ -110,16 +110,16 @@ AS_IF([test "x$PKG_CONFIG" = "xno"],[ +@@ -110,36 +110,36 @@ AS_IF([test "x$PKG_CONFIG" = "xno"],[ # glib2? # we need 2.14 at least, because we use GRegex @@ -55,7 +55,62 @@ # xapian checking - we need 1.2.x at least -@@ -246,26 +246,9 @@ AS_IF([test "x$PMCCABE" = "xno"],[ +-AC_CHECK_PROG(XAPIAN_CONFIG,xapian-config,xapian-config,no) +-AM_CONDITIONAL(HAVE_XAPIAN,test "x$XAPIAN_CONFIG" != "xno") +-AS_IF([test "x$XAPIAN_CONFIG" = "xno"],[ +- AC_MSG_ERROR([ +- *** xapian could not be found; please install it +- *** e.g., in debian/ubuntu the package would be 'libxapian-dev' +- *** If you compiled it yourself, you should ensure that xapian-config +- *** is in your PATH.])], +- [xapian_version=$($XAPIAN_CONFIG --version | sed -e 's/.* //')]) +-AS_CASE([$xapian_version], +- [1.[[2-9]].[[0-9]]*], [], +- [AC_MSG_ERROR([*** xapian version >= 1.2 needed, +- but version $xapian_version found.])]) +- +-XAPIAN_CXXFLAGS="`$XAPIAN_CONFIG --cxxflags`" +-XAPIAN_LIBS="`$XAPIAN_CONFIG --libs`" +-have_xapian="yes" ++#AC_CHECK_PROG(XAPIAN_CONFIG,xapian-config,xapian-config,no) ++#AM_CONDITIONAL(HAVE_XAPIAN,test "x$XAPIAN_CONFIG" != "xno") ++#AS_IF([test "x$XAPIAN_CONFIG" = "xno"],[ ++# AC_MSG_ERROR([ ++# *** xapian could not be found; please install it ++# *** e.g., in debian/ubuntu the package would be 'libxapian-dev' ++# *** If you compiled it yourself, you should ensure that xapian-config ++# *** is in your PATH.])], ++# [xapian_version=$($XAPIAN_CONFIG --version | sed -e 's/.* //')]) ++#AS_CASE([$xapian_version], ++# [1.[[2-9]].[[0-9]]*], [], ++# [AC_MSG_ERROR([*** xapian version >= 1.2 needed, ++# but version $xapian_version found.])]) ++# ++#XAPIAN_CXXFLAGS="`$XAPIAN_CONFIG --cxxflags`" ++#XAPIAN_LIBS="`$XAPIAN_CONFIG --libs`" ++#have_xapian="yes" + + AC_SUBST(XAPIAN_CXXFLAGS) + AC_SUBST(XAPIAN_LIBS) +@@ -235,37 +235,20 @@ AC_SUBST(MU_DOC_DIR, "${prefix}/share/do + + ############################################################################### + # check for pmccabe +-AC_PATH_PROG([PMCCABE],[pmccabe],[no]) +-AS_IF([test "x$PMCCABE" = "xno"],[ +- have_pmccabe="no" +- AC_MSG_WARN([ +- *** Developers: you do not seem to have the pmccabe tool installed. +- *** Please install it if you want to run the automated code checks]) +-],[have_pmccabe="yes"]) ++#AC_PATH_PROG([PMCCABE],[pmccabe],[no]) ++#AS_IF([test "x$PMCCABE" = "xno"],[ ++# have_pmccabe="no" ++# AC_MSG_WARN([ ++# *** Developers: you do not seem to have the pmccabe tool installed. ++# *** Please install it if you want to run the automated code checks]) ++#],[have_pmccabe="yes"]) + ############################################################################### AC_CONFIG_FILES([ Makefile