openbsd-ports/devel/cmake/patches/patch-Source_cmInstallCommand_cxx
dcoppa c079d1f2bf Update to cmake-2.8.10.
Successfully gone through a bulk build.

Feedback landry@, Vadim Zhukov, Amit Kulkarni
Bulk build and OK landry@
2012-11-11 17:13:31 +00:00

25 lines
971 B
Plaintext

$OpenBSD: patch-Source_cmInstallCommand_cxx,v 1.4 2012/11/11 17:13:32 dcoppa Exp $
--- Source/cmInstallCommand.cxx.orig Wed Oct 31 16:32:06 2012
+++ Source/cmInstallCommand.cxx Fri Nov 2 07:43:31 2012
@@ -333,6 +333,9 @@ bool cmInstallCommand::HandleTargetsMode(std::vector<s
// Select the mode for installing symlinks to versioned shared libraries.
cmInstallTargetGenerator::NamelinkModeType
+ // Do not install symlinks to versioned shared libraries on OpenBSD.
+ // Use NamelinkModeSkip unconditionally.
+#if !defined(__OpenBSD__)
namelinkMode = cmInstallTargetGenerator::NamelinkModeNone;
if(libraryArgs.GetNamelinkOnly())
{
@@ -342,7 +345,9 @@ bool cmInstallCommand::HandleTargetsMode(std::vector<s
{
namelinkMode = cmInstallTargetGenerator::NamelinkModeSkip;
}
-
+#else
+ namelinkMode = cmInstallTargetGenerator::NamelinkModeSkip;
+#endif
// Check if there is something to do.
if(targetList.GetVector().empty())
{