From owner-svn-ports-head@freebsd.org Thu Jul 13 11:04:30 2017 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 3E287D9F0E8; Thu, 13 Jul 2017 11:04:30 +0000 (UTC) (envelope-from brnrd@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 18AC673B32; Thu, 13 Jul 2017 11:04:30 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6DB4TkL025387; Thu, 13 Jul 2017 11:04:29 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6DB4SaR025384; Thu, 13 Jul 2017 11:04:28 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201707131104.v6DB4SaR025384@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Thu, 13 Jul 2017 11:04:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r445645 - in head: . devel/apr1 X-SVN-Group: ports-head X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: in head: . devel/apr1 X-SVN-Commit-Revision: 445645 X-SVN-Commit-Repository: ports 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.23 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: Thu, 13 Jul 2017 11:04:30 -0000 Author: brnrd Date: Thu Jul 13 11:04:28 2017 New Revision: 445645 URL: https://svnweb.freebsd.org/changeset/ports/445645 Log: devel/apr1: Fix SQLite option - Fix SQLITE configure args (typo) - Whitespace fixes - Fix typo in UPDATING entry - Add pkg-message with warning Reported by: Stefan Esser Added: head/devel/apr1/pkg-message (contents, props changed) Modified: head/UPDATING head/devel/apr1/Makefile Modified: head/UPDATING ============================================================================== --- head/UPDATING Thu Jul 13 10:57:18 2017 (r445644) +++ head/UPDATING Thu Jul 13 11:04:28 2017 (r445645) @@ -20,7 +20,7 @@ you update your ports collection, before attempting an such as Apache, Subversion, etc. Normally, you can obtain the list of dependent software by running the following command: - # pkg info -r libressl + # pkg info -r apr1 Then you should rebuild all ports depending on APR(-util) to avoid dangling shared library dependencies. Poudriere and pkg handle this Modified: head/devel/apr1/Makefile ============================================================================== --- head/devel/apr1/Makefile Thu Jul 13 10:57:18 2017 (r445644) +++ head/devel/apr1/Makefile Thu Jul 13 11:04:28 2017 (r445645) @@ -83,7 +83,7 @@ DEVRANDOM_VARS_OFF= APR_CONF_ARGS+=--without-devrandom # to avoid failures if previous apr_version.h is present APU_CPPFLAGS= -I${APR_WRKDIR}/include -BDB_VARS= APU_CONF_ARGS+=--with-berkeley-db=${BDB_INCLUDE_DIR}:${BDB_LIB_DIR} +BDB_VARS= APU_CONF_ARGS+=--with-berkeley-db=${BDB_INCLUDE_DIR}:${BDB_LIB_DIR} BDB_VARS_OFF= APU_CONF_ARGS+=--without-berkeley-db GDBM_VARS= APU_CONF_ARGS+=--with-gdbm=${LOCALBASE} LDAP_VARS= APU_CONF_ARGS+="--with-ldap-include=${LOCALBASE}/include \ @@ -91,7 +91,6 @@ LDAP_VARS= APU_CONF_ARGS+="--with-ldap-include=${LOCAL MYSQL_VARS= APU_CONF_ARGS+=--with-mysql=${LOCALBASE} \ APU_CPPFLAGS+="-I${LOCALBASE}/include -I${LOCALBASE}/include/mysql -DHAVE_MYSQL_H" \ LIBS+=-L${LOCALBASE}/lib/mysql - NDBM_VARS= APU_CONF_ARGS+=--with-ndbm=/usr NSS_VARS= APU_CONF_ARGS+=--with-nss=${LOCALBASE} \ APU_CPPFLAGS+=-I${LOCALBASE}/include/nss \ @@ -103,7 +102,7 @@ SSL_VARS= APU_CONF_ARGS+=--with-openssl=${OPENSSLBASE} SSL_VARS_OFF= APU_CONF_ARGS+=--without-openssl PGSQL_VARS= APU_CONF_ARGS+=--with-pgsql=${LOCALBASE} \ APU_CONF_ENV+=ac_cv_path_PGSQL_CONFIG="" -SQLITE_VARS= APU_CONF_ENV+=--with-sqlite3=${LOCALBASE} +SQLITE_VARS= APU_CONF_ARGS+=--with-sqlite3=${LOCALBASE} SQLITE_VARS_OFF= APU_CONF_ARGS+=--without-sqlite3 .for db in GDBM NDBM LDAP ODBC MYSQL NSS PGSQL Added: head/devel/apr1/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/apr1/pkg-message Thu Jul 13 11:04:28 2017 (r445645) @@ -0,0 +1,7 @@ +/!\ ================================================================== /!\ + +The Apache Portable Runtime project removed support for FreeTDS with +version 1.6. Users requiring MS-SQL connectivity must migrate +configurations to use the added ODBC driver and FreeTDS' ODBC features. + +/!\ ================================================================== /!\