···1919 # (Windows' linker would need to be used somehow to produce an actual
2020 # DLL.) Thus, build the static library too, and this is what Gettext
2121 # will actually use.
2222- configureFlags = if stdenv.isCygwin then [ "--enable-static" ] else null;
2222+ configureFlags = if stdenv.isCygwin then [ "--enable-static" ] else
2323+ if stdenv.isFreeBSD then [ "--with-pic" ] else null;
23242425 crossAttrs = {
2526 # Disable stripping to avoid "libiconv.a: Archive has no index" (MinGW).