freetds: enable odbcSupport by default

There is no reason not to, and some packages which I'm working on,
requires this.
This commit is contained in:
Spencer Baugh 2018-11-09 03:55:14 +00:00
parent 290dd06d14
commit 85d1e62ab5

View file

@ -1,6 +1,6 @@
{ stdenv, fetchurl, autoreconfHook, pkgconfig
, openssl
, odbcSupport ? false, unixODBC ? null }:
, odbcSupport ? true, unixODBC ? null }:
assert odbcSupport -> unixODBC != null;