From 3786032100c34e2196bbb8af1e89226b05fbc324 Mon Sep 17 00:00:00 2001 From: lloyd Date: Thu, 19 Nov 2009 23:34:17 +0000 Subject: 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. --- configure.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'configure.py') 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), -- cgit v1.2.3