Skip to content

Commit

Permalink
Force Dynamic SSH on for OpenWatcom builds run with SSH enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrg committed Aug 16, 2024
1 parent b01bf99 commit 31f5458
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions kermit/k95/feature_flags.mak
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,11 @@ DISABLED_FEATURE_DEFS = $(DISABLED_FEATURE_DEFS) -DNOTYPEINTERPRET
WIN32_VERSION=0x0400

!if "$(CMP)" == "OWCL"
# No built-in SSH support for OpenWatcom (yet)
CKF_SSH=no
# No built-in SSH support for OpenWatcom (yet), so if SSH support has been
# requested, turn Dynamic SSH on.
!if "$(CKF_SSH)" == "yes"
CKF_DYNAMIC_SSH=yes
!endif
!endif

!if ($(MSC_VER) >= 192)
Expand Down Expand Up @@ -193,19 +196,20 @@ CKF_K4W=no

!endif

!if "$(CKF_SSH)" == "yes"
!message Target platform is OS/2 - switching off built-in SSH (not supported)
!message and turning on Dynamic SSH instead.
# No built-in SSH support for OS/2 (yet), but Dynamic SSH should work if a
# backend for it is built someday.
CKF_DYNAMIC_SSH=yes
!endif
!endif

!if "$(MIPS_CENTAUR)" == "yes"
!message Turning X/Y/Z MODEM support off - build errors need fixing with this compiler
CKF_XYZ=no
!endif


!if "$(CKF_SSH)" == "yes"
!message Target platform is OS/2 - forcing SSH off (not supported)
# No built-in SSH support for OS/2 (yet)
CKF_SSH=no
!endif
!endif

!if "$(TARGET_CPU)" == "MIPS"
# "Visual C++ 10.00.5292X for MIPS R-Series" can't build ckntap.c for
# some reason. So just turn TAPI support off. You get errors about illegal
Expand Down

0 comments on commit 31f5458

Please sign in to comment.