From owner-svn-ports-head@freebsd.org Sat Jul 23 10:33:36 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 05000BA1025; Sat, 23 Jul 2016 10:33:36 +0000 (UTC) (envelope-from antoine@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 C589815C3; Sat, 23 Jul 2016 10:33:35 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6NAXYAG084958; Sat, 23 Jul 2016 10:33:34 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6NAXYEX084957; Sat, 23 Jul 2016 10:33:34 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201607231033.u6NAXYEX084957@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 23 Jul 2016 10:33:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418960 - head/sysutils/condor/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: Sat, 23 Jul 2016 10:33:36 -0000 Author: antoine Date: Sat Jul 23 10:33:34 2016 New Revision: 418960 URL: https://svnweb.freebsd.org/changeset/ports/418960 Log: Fix build on FreeBSD 12 Reported by: pkg-fallout Modified: head/sysutils/condor/files/patch-build_cmake_macros_SystemSpecificInformations.cmake Modified: head/sysutils/condor/files/patch-build_cmake_macros_SystemSpecificInformations.cmake ============================================================================== --- head/sysutils/condor/files/patch-build_cmake_macros_SystemSpecificInformations.cmake Sat Jul 23 10:17:42 2016 (r418959) +++ head/sysutils/condor/files/patch-build_cmake_macros_SystemSpecificInformations.cmake Sat Jul 23 10:33:34 2016 (r418960) @@ -10,7 +10,7 @@ set( FREEBSD_RELEASE "${CMAKE_MATCH_1}" ) set( FREEBSD_MAJOR "${CMAKE_MATCH_2}" ) set( FREEBSD_MINOR "${CMAKE_MATCH_3}" ) -@@ -270,6 +271,15 @@ if(UNIX) +@@ -270,6 +271,18 @@ if(UNIX) set( CONDOR_FREEBSD7 ON ) elseif(FREEBSD_MAJOR MATCHES "8" ) set( CONDOR_FREEBSD8 ON ) @@ -23,6 +23,9 @@ + elseif(FREEBSD_MAJOR MATCHES "11" ) + set( CONDOR_FREEBSD11 ON ) + set( CONDOR_UTMPX ON ) ++ elseif(FREEBSD_MAJOR MATCHES "12" ) ++ set( CONDOR_FREEBSD12 ON ) ++ set( CONDOR_UTMPX ON ) endif() if( CMAKE_SYSTEM_PROCESSOR MATCHES "amd64" ) set( SYS_ARCH "x86_64")