ncurses: add windows configure flags

these two flags are needed for windows support to work

- sp-funcs
- term-driver
wip/yesman
Matthew Bauer 6 years ago
parent ef087554d0
commit 3530c39b97
  1. 6
      pkgs/development/libraries/ncurses/default.nix

@ -34,7 +34,11 @@ stdenv.mkDerivation rec {
] ++ lib.optional unicode "--enable-widec"
++ lib.optional enableStatic "--enable-static"
++ lib.optional (!withCxx) "--without-cxx"
++ lib.optional (abiVersion == "5") "--with-abi-version=5";
++ lib.optional (abiVersion == "5") "--with-abi-version=5"
++ lib.optionals hostPlatform.isWindows [
"--enable-sp-funcs"
"--enable-term-driver"
];
# Only the C compiler, and explicitly not C++ compiler needs this flag on solaris:
CFLAGS = lib.optionalString stdenv.isSunOS "-D_XOPEN_SOURCE_EXTENDED";

Loading…
Cancel
Save