Commit 7f5b0f0c1ad9d26163bb92fc4f0d36227ba3e68f

Edward Thomson 2021-09-26T21:50:19

cmake: allow ENABLE_REPRODUCIBLE_BUILDS on macOS macOS may support ENABLE_REPRODUCIBLE_BUILDS, allow users to opt-in to it. (Especially since ENABLE_REPRODUCIBLE_BUILDS is not the default.)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 81ef04f..42cc169 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -64,9 +64,7 @@ IF (UNIX)
 	ELSE()
 	    OPTION(USE_NTLMCLIENT		"Enable NTLM support on Unix."				ON )
 	ENDIF()
-ENDIF()
 
-IF (UNIX AND NOT APPLE)
 	OPTION(ENABLE_REPRODUCIBLE_BUILDS "Enable reproducible builds"				OFF)
 ENDIF()