svn commit: r355737 - head/sysutils/condor/files

Nathan Whitehorn nwhitehorn at FreeBSD.org
Thu May 29 19:47:28 UTC 2014


Author: nwhitehorn (src committer)
Date: Thu May 29 19:47:28 2014
New Revision: 355737
URL: http://svnweb.freebsd.org/changeset/ports/355737
QAT: https://qat.redports.org/buildarchive/r355737/

Log:
  Fix build on 11-CURRENT (was otherwise failing due to using utmp instead of
  utmpx).
  
  Approved by:	portmgr (bdrewery)

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	Thu May 29 19:47:19 2014	(r355736)
+++ head/sysutils/condor/files/patch-build-cmake-macros-SystemSpecificInformations.cmake	Thu May 29 19:47:28 2014	(r355737)
@@ -10,7 +10,7 @@
      set( FREEBSD_RELEASE "${CMAKE_MATCH_1}" )
      set( FREEBSD_MAJOR "${CMAKE_MATCH_2}" )
      set( FREEBSD_MINOR "${CMAKE_MATCH_3}" )
-@@ -259,6 +260,11 @@
+@@ -259,6 +260,14 @@
        set( CONDOR_FREEBSD7 ON )
      elseif(FREEBSD_MAJOR MATCHES "8" )
        set( CONDOR_FREEBSD8 ON )
@@ -19,6 +19,9 @@
 +    elseif(FREEBSD_MAJOR MATCHES "10" )
 +      set( CONDOR_FREEBSD10 ON )
 +      set( CONDOR_FREEBSD9 ON )
++    elseif(FREEBSD_MAJOR MATCHES "11" )
++      set( CONDOR_FREEBSD11 ON )
++      set( CONDOR_FREEBSD9 ON )
      endif()
      if( CMAKE_SYSTEM_PROCESSOR MATCHES "amd64" )
        set( SYS_ARCH "x86_64")


More information about the svn-ports-head mailing list