From 2c84685a3d58a3e6baac5383e78eff2605ec7c02 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 23 Apr 2009 11:22:07 +0200 Subject: Build modules statically by default, as there still seem to be a lot of issues with those even if shared libs work. --- source4/build/smb_build/main.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source4/build') 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"]; } -- cgit