Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 May 2016 07:46:04 +0000 (UTC)
From:      Hiroki Sato <hrs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r415376 - head/mail/mu4e/files
Message-ID:  <201605170746.u4H7k4eh040407@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605170746.u4H7k4eh040407>