if test "yes" = "$enable_full_report" -o "standard" = "$locktype"; then
echo " Mutex lock type: $locktype"
fi
- test "large" = "$use_tuning" && echo " Large-system tuning (--with-tuning)"
+ test "small" = "$with_tuning" && echo " Small-system tuning (--with-tuning)"
test "no" = "$use_dnstap" || \
echo " Allow 'dnstap' packet logging (--enable-dnstap)"
test -z "$MAXMINDDB_LIBS" || echo " GeoIP2 access control (--enable-geoip)"
echo "Features disabled or unavailable on this platform:"
test "no" = "$found_ipv6" && echo " IPv6 support (--enable-ipv6)"
- test "large" = "$use_tuning" || echo " Large-system tuning (--with-tuning)"
+ test "small" = "$with_tuning" || echo " Small-system tuning (--with-tuning)"
test "no" = "$use_dnstap" && \
echo " Allow 'dnstap' packet logging (--enable-dnstap)"
" with-iconv[=PATH] path of the iconv DLL [default=same than idn]\n",
" with-zlib[=PATH] build with zlib library yes|no|path\n",
" with-vcredist[=PATH] visual C++ redistributable package yes|path\n",
-" with-tuning=OPTION tune for platform size (large|default)\n",
+" with-tuning=OPTION tune for platform size (small|default)\n",
" with-cross-compile 32 / 64 bit build / host platforms\n",
"\nOptional Visual Studio project parameters:\n",
" with-tools-version=VERSION set the ToolsVersion attribute to VERSION\n",
$cross_compile = "yes";
}
} elsif ($key =~ /^tuning$/i) {
- if ($val =~ /^large$/i) {
- $tuning = "large";
+ if ($val =~ /^small$/i) {
+ $tuning = "small";
}
} elsif ($key =~ /^tools-version$/i) {
$configvar{"TOOLS_VERSION"} = $val;
}
# tuning
-if ($tuning eq "large") {
+if ($tuning ne "small") {
$configdefh{"TUNE_LARGE"} = 1;
}