changeset 5975:15322fbad67c

Raise minimum Windows API version for Octave stable. * src/build-gcc.mk, src/mingw-w64.mk: Update condition for setting minimum Windows API version after merge in Octave repository.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 25 Nov 2021 11:36:10 +0100
parents 56dac5f3f3af
children 93e18f23ccc9
files src/build-gcc.mk src/mingw-w64.mk
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/build-gcc.mk	Wed Nov 24 18:38:47 2021 +0100
+++ b/src/build-gcc.mk	Thu Nov 25 11:36:10 2021 +0100
@@ -49,8 +49,8 @@
     endef
   endif
 
-  ifeq ($(OCTAVE_TARGET),default-octave)
-    # FIXME: Adapt condition when Octave 7 moves to stable or it is released.
+  ifneq ($(OCTAVE_TARGET),release-octave)
+    # FIXME: Set unconditionally for the first release candidate of Octave 7.
     $(PKG)_WINAPI_VERSION_FLAGS := --with-default-win32-winnt=0x0601
   endif
 
--- a/src/mingw-w64.mk	Wed Nov 24 18:38:47 2021 +0100
+++ b/src/mingw-w64.mk	Thu Nov 25 11:36:10 2021 +0100
@@ -17,8 +17,8 @@
   tail -1
 endef
 
-ifeq ($(OCTAVE_TARGET),default-octave)
-  # FIXME: Adapt condition when Octave 7 moves to stable or it is released.
+ifneq ($(OCTAVE_TARGET),release-octave)
+  # FIXME: Set unconditionally for the first release candidate of Octave 7.
   $(PKG)_WINAPI_VERSION_FLAGS := --with-default-win32-winnt=0x0601
 endif