diff options
author | Sitsofe Wheeler <sitsofe@yahoo.com> | 2020-12-23 16:01:52 +0000 |
---|---|---|
committer | Sitsofe Wheeler <sitsofe@yahoo.com> | 2020-12-26 08:07:22 +0000 |
commit | 26dcc08452b18f72e404760d8dc3c0bc057dacbe (patch) | |
tree | 8af841be4c78380c6f48871f74e184ac0dca4208 /configure | |
parent | b0340c5c7de38b3f4632366247489da7c52d5cfb (diff) | |
download | fio-26dcc08452b18f72e404760d8dc3c0bc057dacbe.tar.gz fio-26dcc08452b18f72e404760d8dc3c0bc057dacbe.tar.bz2 |
windows: drop XP support
Windows 2003 has been EOL since 2015 and Windows XP has been EOL since
2014. Technically fio hasn't been properly targetting XP anyway - (see
16d40a15783f9181d64082fc00a970dff485798f 'configure: be explicit about
"XP" Windows API version').
- Strip out support for XP and change the documentation to no longer
mention it
- Stop targetting XP in the CI 32 bit build
Next stop, Windows 7...
Signed-off-by: Sitsofe Wheeler <sitsofe@yahoo.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -257,7 +257,7 @@ if test "$show_help" = "yes" ; then echo "--cc= Specify compiler to use" echo "--extra-cflags= Specify extra CFLAGS to pass to compiler" echo "--build-32bit-win Enable 32-bit build on Windows" - echo "--target-win-ver= Minimum version of Windows to target (XP or 7)" + echo "--target-win-ver= Minimum version of Windows to target (only accepts 7)" echo "--enable-pdb Enable Windows PDB symbols generation (needs clang/lld)" echo "--build-static Build a static fio" echo "--esx Configure build options for esx" @@ -395,11 +395,7 @@ CYGWIN*) # Default Windows API target target_win_ver="7" fi - if test "$target_win_ver" = "XP"; then - output_sym "CONFIG_WINDOWS_XP" - # Technically the below is targeting 2003 - CFLAGS="$CFLAGS -D_WIN32_WINNT=0x0502" - elif test "$target_win_ver" = "7"; then + if test "$target_win_ver" = "7"; then output_sym "CONFIG_WINDOWS_7" CFLAGS="$CFLAGS -D_WIN32_WINNT=0x0601" else |