From owner-svn-ports-head@FreeBSD.ORG Thu Dec 4 16:04:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6705E35E; Thu, 4 Dec 2014 16:04:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 536DAB56; Thu, 4 Dec 2014 16:04:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sB4G41iw098063; Thu, 4 Dec 2014 16:04:01 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sB4G40Wt098056; Thu, 4 Dec 2014 16:04:00 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201412041604.sB4G40Wt098056@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 4 Dec 2014 16:04:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r373965 - in head/sysutils/pmt: . 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.18-1 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, 04 Dec 2014 16:04:01 -0000 Author: amdmi3 Date: Thu Dec 4 16:04:00 2014 New Revision: 373965 URL: https://svnweb.freebsd.org/changeset/ports/373965 QAT: https://qat.redports.org/buildarchive/r373965/ Log: - Fix always true condition Added: head/sysutils/pmt/files/patch-config.mak - copied unchanged from r373878, head/sysutils/pmt/files/extra-patch-config.mak Deleted: head/sysutils/pmt/files/extra-patch-config.mak Modified: head/sysutils/pmt/Makefile Modified: head/sysutils/pmt/Makefile ============================================================================== --- head/sysutils/pmt/Makefile Thu Dec 4 16:02:56 2014 (r373964) +++ head/sysutils/pmt/Makefile Thu Dec 4 16:04:00 2014 (r373965) @@ -14,13 +14,7 @@ USES= gmake tar:bzip2 PLIST_FILES= bin/pmt -.include - -.if ${OSVERSION} >= 800071 -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-config.mak -.endif - do-install: ${INSTALL_PROGRAM} ${WRKSRC}/pmt ${STAGEDIR}${PREFIX}/bin -.include +.include Copied: head/sysutils/pmt/files/patch-config.mak (from r373878, head/sysutils/pmt/files/extra-patch-config.mak) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/pmt/files/patch-config.mak Thu Dec 4 16:04:00 2014 (r373965, copy of r373878, head/sysutils/pmt/files/extra-patch-config.mak) @@ -0,0 +1,10 @@ +--- ./config.mak.orig 2010-01-06 08:21:36.000000000 -0500 ++++ ./config.mak 2010-01-06 08:21:54.000000000 -0500 +@@ -1,6 +1,6 @@ + VERSION = 0.2 + MAKEFLAGS += --print-directory +-PMT_CFLAGS = -std=c99 -Wall -Werror -pedantic \ ++PMT_CFLAGS = -std=c99 -Wall -Werror -pedantic -D__XSI_VISIBLE \ + -D_POSIX_SOURCE -DVERSION='$(VERSION)' \ + -I. -Ilibowfat +