diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-03-07 16:27:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:52:31 -0500 |
commit | 2761caf567aac966590e9a920e531f4df72a3a1b (patch) | |
tree | a74452e83257c3e4115f53d9c933e8eaa9bac14f /source4/build | |
parent | f3f19158bb3e1307337c77f06991441f3c70a1e6 (diff) | |
download | samba-2761caf567aac966590e9a920e531f4df72a3a1b.tar.gz samba-2761caf567aac966590e9a920e531f4df72a3a1b.tar.xz samba-2761caf567aac966590e9a920e531f4df72a3a1b.zip |
r13954: Add --enable-dso flag to ./configure that simplifies the ability to
do shared library-enabled builds.
(This used to be commit 9a1d76c13d44d6a8e4557893f485c5b81c68e01a)
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/smb_build/main.pl | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/source4/build/smb_build/main.pl b/source4/build/smb_build/main.pl index bf11e8c896c..747118db333 100644 --- a/source4/build/smb_build/main.pl +++ b/source4/build/smb_build/main.pl @@ -33,9 +33,7 @@ my $library_output_type; if (defined($ENV{"LIBRARY_OUTPUT_TYPE"})) { $library_output_type = $ENV{LIBRARY_OUTPUT_TYPE}; } elsif ($config::config{BLDSHARED} eq "true") { - #FIXME: This should eventually become SHARED_LIBRARY - # rather then MERGEDOBJ once I'm certain it works ok -- jelmer - $library_output_type = "MERGEDOBJ"; + $library_output_type = "SHARED_LIBRARY"; } elsif ($config::config{BLDMERGED} eq "true") { $library_output_type = "MERGEDOBJ"; } else { @@ -46,9 +44,7 @@ my $module_output_type; if (defined($ENV{"MODULE_OUTPUT_TYPE"})) { $module_output_type = $ENV{MODULE_OUTPUT_TYPE}; } elsif ($config::config{BLDSHARED} eq "true") { - #FIXME: This should eventually become SHARED_LIBRARY - # rather then MERGEDOBJ once I'm certain it works ok -- jelmer - $module_output_type = "MERGEDOBJ"; + $module_output_type = "SHARED_LIBRARY"; } elsif ($config::config{BLDMERGED} eq "true") { $module_output_type = "MERGEDOBJ"; } else { |