diff options
author | lloyd <[email protected]> | 2010-05-13 15:17:20 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-05-13 15:17:20 +0000 |
commit | d1f7b117a81982373f4aaa3260b5017b5bf10450 (patch) | |
tree | 84d621e065ba4b7f8f59027e419ac82d583d0f48 /src/build-data/os/cygwin.txt | |
parent | 0b3a19725ae5c2959fea4be3728660063f31dc9d (diff) |
Remove the old (unused) <supports_shared> config block. It specified
which architectures the OS supported shared libs on; in all cases it
was either all or none. Replace with new config build_shared [yes|no],
which defaults to yes but is set to no for MinGW and Cygwin since
shared libs don't seem to be working well there.
Diffstat (limited to 'src/build-data/os/cygwin.txt')
-rw-r--r-- | src/build-data/os/cygwin.txt | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/build-data/os/cygwin.txt b/src/build-data/os/cygwin.txt index f7c1f49ed..9ec86736d 100644 --- a/src/build-data/os/cygwin.txt +++ b/src/build-data/os/cygwin.txt @@ -1,15 +1,13 @@ os_type unix +# Cygwin supports shared libs fine, but there are problems with making a Botan +# shared library when libraries it depends on are static-only (such as libz). +# So until I can figure out a work-around, it's disabled. +build_shared no + install_root c:\Botan doc_dir docs <target_features> gettimeofday </target_features> - -# Cygwin supports shared libs fine, but there are problems with making a Botan -# shared library when libraries it depends on are static-only (such as libz). -# So until I can figure out a work-around, it's disabled. -<supports_shared> -#all -</supports_shared> |