Build modules statically by default, as there still seem to be a lot of
authorJelmer Vernooij <jelmer@samba.org>
Thu, 23 Apr 2009 09:22:07 +0000 (11:22 +0200)
committerJelmer Vernooij <jelmer@samba.org>
Tue, 2 Jun 2009 16:05:41 +0000 (18:05 +0200)
issues with those even if shared libs work.

source4/build/smb_build/main.pl

index 0d19e418270a0344925d64803fe3cf1e4b1526c7..fbea26930063bac9e92e48f4fc5e0dbb47355d36 100644 (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"];
 }