diff options
author | lloyd <[email protected]> | 2009-11-19 23:34:17 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-11-19 23:34:17 +0000 |
commit | 3786032100c34e2196bbb8af1e89226b05fbc324 (patch) | |
tree | 6decd77dd510684a7d3349905ba6f00bd03bb949 /configure.py | |
parent | ac7ebedffe54a09770a93283f9644554d5cf06c5 (diff) |
Most compilers had empty dll_*_flags; remove them since the default is
empty anyway.
For VC++ (only user) set BOTAN_DLL to dllimport by default (for apps), and then
redefine as dllexport when building the library.
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.py b/configure.py index 668d03986..5085b2f70 100755 --- a/configure.py +++ b/configure.py @@ -535,7 +535,6 @@ class CompilerInfo(object): 'lang_flags': '', 'warning_flags': '', 'dll_import_flags': '', - 'dll_export_flags': '', 'ar_command': None, 'makefile_style': '', 'compiler_has_tr1': False, @@ -831,7 +830,7 @@ def create_template_vars(build_config, options, modules, cc, arch, osinfo): 'lang_flags': cc.lang_flags + options.extra_flags, 'warn_flags': cc.warning_flags, 'shared_flags': cc.shared_flags, - 'dll_export_flags': cc.dll_export_flags, + 'dll_import_flags': cc.dll_import_flags, 'so_link': cc.so_link_command_for(osinfo.basename), |