1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

Build modules statically by default, as there still seem to be a lot of

issues with those even if shared libs work.
This commit is contained in:
Jelmer Vernooij 2009-04-23 11:22:07 +02:00
parent 6ace18904d
commit 2c84685a3d

View File

@ -43,7 +43,8 @@ if ($useshared eq "true") {
my $module_output_type;
if ($useshared eq "true") {
$module_output_type = ["SHARED_LIBRARY"];
#$module_output_type = ["SHARED_LIBRARY"];
$module_output_type = ["MERGED_OBJ"];
} else {
$module_output_type = ["MERGED_OBJ"];
}