From owner-svn-ports-all@freebsd.org Mon Oct 22 16:41:16 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 554131038264; Mon, 22 Oct 2018 16:41:16 +0000 (UTC) (envelope-from ohauer@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 0B21C83C2E; Mon, 22 Oct 2018 16:41:16 +0000 (UTC) (envelope-from ohauer@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 0618A1ED86; Mon, 22 Oct 2018 16:41:16 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9MGfFDY079544; Mon, 22 Oct 2018 16:41:15 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9MGfFhC079540; Mon, 22 Oct 2018 16:41:15 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201810221641.w9MGfFhC079540@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Mon, 22 Oct 2018 16:41:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482754 - in head/mail: postfix-current/files postfix/files X-SVN-Group: ports-head X-SVN-Commit-Author: ohauer X-SVN-Commit-Paths: in head/mail: postfix-current/files postfix/files X-SVN-Commit-Revision: 482754 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.29 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: Mon, 22 Oct 2018 16:41:16 -0000 Author: ohauer Date: Mon Oct 22 16:41:14 2018 New Revision: 482754 URL: https://svnweb.freebsd.org/changeset/ports/482754 Log: - fix build on FreeBSD 13-CURRENT PR: 232502 Submitted by: Kai Modified: head/mail/postfix-current/files/patch-makedefs head/mail/postfix-current/files/patch-src_util_sys__defs.h head/mail/postfix/files/patch-makedefs head/mail/postfix/files/patch-src_util_sys__defs.h Modified: head/mail/postfix-current/files/patch-makedefs ============================================================================== --- head/mail/postfix-current/files/patch-makedefs Mon Oct 22 16:40:57 2018 (r482753) +++ head/mail/postfix-current/files/patch-makedefs Mon Oct 22 16:41:14 2018 (r482754) @@ -1,10 +1,19 @@ ---- makedefs.orig 2018-03-07 00:46:20 UTC +--- makedefs.orig 2018-08-12 21:35:37 UTC +++ makedefs -@@ -296,6 +296,15 @@ case "$SYSTEM.$RELEASE" in +@@ -298,6 +298,24 @@ case "$SYSTEM.$RELEASE" in : ${SHLIB_ENV="LD_LIBRARY_PATH=`pwd`/lib"} : ${PLUGIN_LD="${CC} -shared"} ;; + FreeBSD.12*) SYSTYPE=FREEBSD12 ++ : ${CC=cc} ++ : ${SHLIB_SUFFIX=.so} ++ : ${SHLIB_CFLAGS=-fPIC} ++ : ${SHLIB_LD="${CC} -shared"' -Wl,-soname,${LIB}'} ++ : ${SHLIB_RPATH='-Wl,-rpath,${SHLIB_DIR}'} ++ : ${SHLIB_ENV="LD_LIBRARY_PATH=`pwd`/lib"} ++ : ${PLUGIN_LD="${CC} -shared"} ++ ;; ++ FreeBSD.13*) SYSTYPE=FREEBSD13 + : ${CC=cc} + : ${SHLIB_SUFFIX=.so} + : ${SHLIB_CFLAGS=-fPIC} Modified: head/mail/postfix-current/files/patch-src_util_sys__defs.h ============================================================================== --- head/mail/postfix-current/files/patch-src_util_sys__defs.h Mon Oct 22 16:40:57 2018 (r482753) +++ head/mail/postfix-current/files/patch-src_util_sys__defs.h Mon Oct 22 16:41:14 2018 (r482754) @@ -5,7 +5,7 @@ || defined(FREEBSD5) || defined(FREEBSD6) || defined(FREEBSD7) \ || defined(FREEBSD8) || defined(FREEBSD9) || defined(FREEBSD10) \ - || defined(FREEBSD11) \ -+ || defined(FREEBSD11) || defined(FREEBSD12) \ ++ || defined(FREEBSD11) || defined(FREEBSD12) || defined(FREEBSD13) \ || defined(BSDI2) || defined(BSDI3) || defined(BSDI4) \ || defined(OPENBSD2) || defined(OPENBSD3) || defined(OPENBSD4) \ || defined(OPENBSD5) || defined(OPENBSD6) \ Modified: head/mail/postfix/files/patch-makedefs ============================================================================== --- head/mail/postfix/files/patch-makedefs Mon Oct 22 16:40:57 2018 (r482753) +++ head/mail/postfix/files/patch-makedefs Mon Oct 22 16:41:14 2018 (r482754) @@ -1,6 +1,6 @@ ---- makedefs.orig 2016-05-15 16:39:11 UTC +--- makedefs.orig 2018-02-03 17:20:46 UTC +++ makedefs -@@ -272,6 +272,24 @@ case "$SYSTEM.$RELEASE" in +@@ -287,6 +287,33 @@ case "$SYSTEM.$RELEASE" in : ${SHLIB_ENV="LD_LIBRARY_PATH=`pwd`/lib"} : ${PLUGIN_LD="${CC} -shared"} ;; @@ -14,6 +14,15 @@ + : ${PLUGIN_LD="${CC} -shared"} + ;; + FreeBSD.12*) SYSTYPE=FREEBSD12 ++ : ${CC=cc} ++ : ${SHLIB_SUFFIX=.so} ++ : ${SHLIB_CFLAGS=-fPIC} ++ : ${SHLIB_LD="${CC} -shared"' -Wl,-soname,${LIB}'} ++ : ${SHLIB_RPATH='-Wl,-rpath,${SHLIB_DIR}'} ++ : ${SHLIB_ENV="LD_LIBRARY_PATH=`pwd`/lib"} ++ : ${PLUGIN_LD="${CC} -shared"} ++ ;; ++ FreeBSD.13*) SYSTYPE=FREEBSD13 + : ${CC=cc} + : ${SHLIB_SUFFIX=.so} + : ${SHLIB_CFLAGS=-fPIC} Modified: head/mail/postfix/files/patch-src_util_sys__defs.h ============================================================================== --- head/mail/postfix/files/patch-src_util_sys__defs.h Mon Oct 22 16:40:57 2018 (r482753) +++ head/mail/postfix/files/patch-src_util_sys__defs.h Mon Oct 22 16:41:14 2018 (r482754) @@ -4,7 +4,7 @@ #if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) \ || defined(FREEBSD5) || defined(FREEBSD6) || defined(FREEBSD7) \ || defined(FREEBSD8) || defined(FREEBSD9) || defined(FREEBSD10) \ -+ || defined(FREEBSD11) || defined(FREEBSD12) \ ++ || defined(FREEBSD11) || defined(FREEBSD12) || defined(FREEBSD13) \ || defined(BSDI2) || defined(BSDI3) || defined(BSDI4) \ || defined(OPENBSD2) || defined(OPENBSD3) || defined(OPENBSD4) \ || defined(OPENBSD5) || defined(OPENBSD6) \