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 /src/build-data/buildh.in | |
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 'src/build-data/buildh.in')
-rw-r--r-- | src/build-data/buildh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build-data/buildh.in b/src/build-data/buildh.in index e0d8368ed..37ff06f9d 100644 --- a/src/build-data/buildh.in +++ b/src/build-data/buildh.in @@ -9,7 +9,7 @@ #define BOTAN_VERSION_PATCH %{version_patch} #ifndef BOTAN_DLL - #define BOTAN_DLL %{dll_export_flags} + #define BOTAN_DLL %{dll_import_flags} #endif /* Chunk sizes */ |