Skip to content

Commit

Permalink
libsodium: Don't fortify on mingw
Browse files Browse the repository at this point in the history
  • Loading branch information
shlevy committed Aug 11, 2021
1 parent 9ecfbe0 commit 5f073a6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pkgs/development/libraries/libsodium/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl }:
{ lib, stdenv, fetchurl, autoreconfHook }:

stdenv.mkDerivation rec {
pname = "libsodium";
Expand All @@ -10,6 +10,11 @@ stdenv.mkDerivation rec {
};

outputs = [ "out" "dev" ];

patches = lib.optional stdenv.targetPlatform.isMinGW ./mingw-no-fortify.patch;

nativeBuildInputs = lib.optional stdenv.targetPlatform.isMinGW autoreconfHook;

separateDebugInfo = stdenv.isLinux && stdenv.hostPlatform.libc != "musl";

enableParallelBuilding = true;
Expand Down
15 changes: 15 additions & 0 deletions pkgs/development/libraries/libsodium/mingw-no-fortify.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
diff -Naur libsodium-1.0.18-orig/configure.ac libsodium-1.0.18/configure.ac
--- libsodium-1.0.18-orig/configure.ac 2019-05-30 16:20:24.000000000 -0400
+++ libsodium-1.0.18/configure.ac 2021-08-11 08:09:54.653907245 -0400
@@ -217,11 +217,6 @@

AC_CHECK_DEFINE([__wasi__], [WASI="yes"], [])

-AC_CHECK_DEFINE([_FORTIFY_SOURCE], [], [
- AX_CHECK_COMPILE_FLAG([-D_FORTIFY_SOURCE=2],
- [CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2"])
-])
-
AX_CHECK_COMPILE_FLAG([-fvisibility=hidden],
[CFLAGS="$CFLAGS -fvisibility=hidden"])

0 comments on commit 5f073a6

Please sign in to comment.