- Applied patch to allow Solaris to be recognized by cmake.

Signed-off-by: Paul Beckingham <paul@beckingham.net>
This commit is contained in:
Owen Clarke
2011-06-27 21:59:38 -04:00
committed by Paul Beckingham
parent 8c6e5277ec
commit e4c173771f
2 changed files with 3 additions and 0 deletions

View File

@@ -71,6 +71,8 @@ elseif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set (DARWIN true) set (DARWIN true)
elseif (${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") elseif (${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
set (FREEBSD true) set (FREEBSD true)
elseif (${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
set (SOLARIS true)
else (${CMAKE_SYSTEM_NAME} MATCHES "Linux") else (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
set (UNKNOWN true) set (UNKNOWN true)
endif (${CMAKE_SYSTEM_NAME} MATCHES "Linux") endif (${CMAKE_SYSTEM_NAME} MATCHES "Linux")

View File

@@ -120,6 +120,7 @@
Clarke). Clarke).
+ Fixed bug #788, which reported regex and readline versions, even though they + Fixed bug #788, which reported regex and readline versions, even though they
are not used. are not used.
+ Fixed bug #792, so that cmake now recognizes Solaris (thanks to Owen Clarke).
# Untracked Bugs, biggest first. # Untracked Bugs, biggest first.
+ Fixed bug that required the '%YAML' prologue in a YAML import. + Fixed bug that required the '%YAML' prologue in a YAML import.