From: Jelmer Vernooij Date: Thu, 23 Apr 2009 09:22:07 +0000 (+0200) Subject: Build modules statically by default, as there still seem to be a lot of X-Git-Tag: tdb-1.1.5~363 X-Git-Url: http://git.samba.org/samba.git/?p=ira%2Fwip.git;a=commitdiff_plain;h=2c84685a3d58a3e6baac5383e78eff2605ec7c02 Build modules statically by default, as there still seem to be a lot of issues with those even if shared libs work. --- diff --git a/source4/build/smb_build/main.pl b/source4/build/smb_build/main.pl index 0d19e418270..fbea2693006 100644 --- a/source4/build/smb_build/main.pl +++ b/source4/build/smb_build/main.pl @@ -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"]; }