summaryrefslogtreecommitdiff
path: root/sysutils/condor
diff options
context:
space:
mode:
authorNathan Whitehorn <nwhitehorn@FreeBSD.org>2014-05-29 19:47:28 +0000
committerNathan Whitehorn <nwhitehorn@FreeBSD.org>2014-05-29 19:47:28 +0000
commit209c632334fa50dd032d75fac02d6813847619c2 (patch)
tree0e4b59c952115255381f9fc769d3dfced904c1f8 /sysutils/condor
parentgames/dungeon: Add stage support (diff)
Fix build on 11-CURRENT (was otherwise failing due to using utmp instead of
utmpx). Approved by: portmgr (bdrewery)
Notes
Notes: svn path=/head/; revision=355737
Diffstat (limited to 'sysutils/condor')
-rw-r--r--sysutils/condor/files/patch-build-cmake-macros-SystemSpecificInformations.cmake5
1 files changed, 4 insertions, 1 deletions
diff --git a/sysutils/condor/files/patch-build-cmake-macros-SystemSpecificInformations.cmake b/sysutils/condor/files/patch-build-cmake-macros-SystemSpecificInformations.cmake
index 35231aeff59c..b1f13543e2f8 100644
--- a/sysutils/condor/files/patch-build-cmake-macros-SystemSpecificInformations.cmake
+++ b/sysutils/condor/files/patch-build-cmake-macros-SystemSpecificInformations.cmake
@@ -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")