diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-04-23 11:22:07 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-06-02 18:05:41 +0200 |
commit | 2c84685a3d58a3e6baac5383e78eff2605ec7c02 (patch) | |
tree | b5179fd20e0db37d9d0a7fa620921efd186c2ef8 /source4/build | |
parent | 6ace18904d638f1fb49c31041ba23353d97b40cb (diff) | |
download | samba-2c84685a3d58a3e6baac5383e78eff2605ec7c02.tar.gz |
Build modules statically by default, as there still seem to be a lot of
issues with those even if shared libs work.
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/smb_build/main.pl | 3 |
1 files changed, 2 insertions, 1 deletions
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"]; } |